body{
    background-color: #572500;
}
#content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40rem;
}
#contact{
    margin-left: 5px;
    font-size: 0.8em;
    line-height: 1.2em;
    color:white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#logo>img{
    width: 450px;
    transition: transform .3s;
}
#logo>img:hover{
    transform: scale(1.02);
}
/*mobile*/
@media only screen and (max-width: 700px) {
    #content{
        display: grid!important;
    }
    #contact {
        display: flex;
        justify-content: center;
        text-align:center;
        margin-top: -20rem;
        font-size: 1em;
        line-height: 1.4em;
    }
}
a{
    color: #e5b53b;
}