body {
    margin: 0;
    display: flex; 
    flex-direction: column;
    align-items: center;
    background-color: #eee5e5;
}

nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #9c8989;
    margin-bottom: 50px;
}

nav {
    font-family: times new roman;
    font-weight: bold;
    font-size: 25px;
    font-variant: small-caps;
}

nav a {
    position: relative;
    color: #9c8989;
    text-decoration: none;
    padding: 2px 100px;
    transition: .5s;
}

nav a:hover {
    color: #5b4545;
    transform: scale(1.1)
}

.logo {
    padding: 0;
    margin-bottom: -10px;
    width: auto;
}

p {
    font-size: 20px;
    color: #5b4545;
    text-align: center;
}

a {
    font-weight: bold;
    text-decoration: underline;
    color: #b34b5e;
}

footer {
    font-weight: thin;
    margin-top: 50px;
    padding: 20px;
    color: #9c8989
    
}