body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    background-color: #ffabc4;
    font-family: serif;
}

nav {
    grid-column: 1 / 2;
    grid-row: 1 / span 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

main {
    grid-column: 2 / span 2;
    grid-row: 1 / span 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-style: inset;
    border-width: 2px;
    border-color: #F0845D;
}

#return {
    color: #647065;
}

p {
    text-align: center;
}

.thumbs {
    width: 10vw;
    height: 10vw;
    object-fit: cover;
    border-style: ridge;
    border-width: 2px;
    border-color: #9B707D;
    background-color: white;
}

#bigpic {
    flex-grow: 1;
    object-fit: contain;
    margin: 1%;
    max-height: 99%;
    max-width: 99%;
    border-style: ridge;
    border-width: 2px;
    border-color: #9B707D;
}