/* Targeting typography features*/
h1 {
    text-align: center;
    color: #808000;
    font-family: "Lilita One", sans-serif;
    font-size: 2.9rem;
}

h2 {
    color: #808000;
    font-family: "Lilita One", sans-serif;
    font-size: 2rem;
}

h5 {
    text-align: center;
    color: #808000;
    font-family: "Lilita One", sans-serif;
    font-size: 1.5em;
}

p,
ul,
h4 {
    text-align: left;
    font-family: "Montserrat", sans-serif;

}

.p2 {
    text-align: center;
    color: #808000;
    font-size: 1rem;

}

/*Media Query for Large Screens*/
@media (max-width: 575.98px) {
    p {
        font-size: 1rem;
    }

    .bottom {
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
    }
}

/*Media Query for Small Screens*/
@media (min-width: 575.99px) {
    p {
        font-size: auto;
    }

    .bottom {
        margin-bottom: 2rem;
    }

}