/* Targeting typography features*/
h1 {
    text-align: center;
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.9rem;
    letter-spacing: 0.05em;
}

h2 {
    color: #f9f9f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

p {
    font-size: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
}

.bg-primary{
     background-color: #787896 !important;
}

#mainNav a.nav-link:hover {
    color: #c4c4da !important;
}

#mainNav a.nav-link:active {
    color: #c4c4da !important;
}

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

    .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;
    }

}