@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.footer {
    background-color: rgb(0, 122, 51);
    margin-bottom: 0;
}
p, h1, h2 {
    font-weight: 500;
    color: rgb(177, 146, 16);
    font-family: "Outfit"
}
p:not(.ignoreFooterStyle) 
{
    font-size: 20px;
}
@media screen and (min-width: 768px)
{
    .footer 
    {
        padding: 10em;
    }
}
@media screen and (max-width: 768px)
{
.footer {
   padding: 1em !important
}
}

.styleLinks{
    text-decoration: none;
    color: rgb(177, 146, 16);
}

.styleLinks:hover{
text-decoration: underline;
}