body {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;

}

a {
    text-decoration: none;
}

.logo {
    width: 100px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.navbar {
    text-align: center;
}

.contact {
    background-color: #c7b273;
    font-weight: bolder;
    text-decoration: none;
    font-size: .5rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    transition: 0.3s;
    border-radius: 10px;
}

.contact:hover, .contact:active {
    color: #c7b273;
    background-color: white;
}


footer {
    text-align: center;
    padding: 50px 0px 20px 0px;
}