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;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    grid-gap: 40px;
    
    margin-top: 50px;
}

.grid img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    
    border-radius: 30px;
    border: 5px solid #5b4545;
    
    box-shadow: 2px 2px 8px #4c4545;
    
    transition: .5s;
}

.grid img:hover {
    transform: scale(1.15);
}

.lightbox {
    position: fixed;
    inset: 0;
    max-width: 100vw;
    max-height: 100vh;
    
    background: rgba(0,0,0,.85);
    color: white;
    
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    z-index: 1000;
}

.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
}

h3 {
   margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
}

p {
    margin-top: -3px;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    text-decoration: none;
}

.close::after {
    content: 'x';
    color: white;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

footer {
    font-weight: thin;
    margin-top: 50px;
    padding: 20px;
    color: #9c8989
    
}