*{
    padding: 0%;
    margin: 0%;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Crete Round', serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Prompt', sans-serif;
    font-family: 'Wix Madefor Display', sans-serif;
}
body,html{
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    
}
.flex{
    display: flex;
    width: auto;
}
.center{
    align-items: center;
    justify-content: center;
}
section{
    display: flex;
    flex-direction: row;
    overflow: hidden;
    justify-content: space-between;
    margin-left: 5rem;
    margin-right:5rem;
    border: 1px grey solid;
    border-top: none;
    border-left: none;
    border-right: none;

}
.content{
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
}
.content-image{
    border-radius: 10px;
    box-shadow: 10px 10px black;
    margin-top: 10rem;
    margin-bottom: 10rem;
    height: 60%;
    width: 60%;
}
.content-text{
    font-size: larger;
    text-align: center;
    font-style: italic;
}
.footer{
    height: 30vh;
    background-color: #796b60;
    color: white;
    padding: 1%;
}
.footer-contents{
    display: flex;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
    padding-left: 1%;
    padding-right: 5%;
}
.column > *{
    color: white !important;
}
.footer > div > .column > a:hover{
    text-decoration: underline;
}
.footer > div > h4{
    padding-right: 5%;
}

.footer > div > p{
    text-align: center;
}








