html {
    overscroll-behavior: none;
}
body{
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Georgia, 'Times New Roman', Times, sans-serif;
    margin: 0;
}
/*footer*/
.footerContainer{
    color: white;
    display: flex;
    flex-direction: row;
    height: 20rem;
}
.footerContainer h3{
    text-decoration: underline;
}
.footerContainer a{
    color: white;
    text-decoration: none;
}
.footerContainer a:hover{
    color: var(--hover-color);
}
footer{
    width: 100%;
    margin-top: 10px;
    background-color: var(--active-color);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
}
footer p{
    padding-top: 10px;
    margin: 0;
}
footer p:hover{
    background-color: var(--active-color);
}
/*end footer*/
.links{
    display: flex;
    flex-direction: column;
}
.blurb{
    display: flex;
    width: 10%;
}
.copyright{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    text-align: center;
}
.copyright img{
    width: 300px;
    height: 100px;
}
/*Responsive text large screen => small screen*/
@media (min-width: 1100px) {
    .bodyText{
        font-size: 100%;
        margin-left: 1rem;
        margin-right: 50%;
    }
    .copyright img{
        width: 300px;
        height: 100px;
    }
}
@media (max-width: 750px){
    .bodyText{
        font-size: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 5%;
    }  
    .copyright img{
        width: 150px;
        height: 50px;
    }
}