.box {
    background-color: rgb(255, 234, 249);
    max-width: 1000px;
    margin: 125px auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 250px minmax(0,1fr);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 2px 2px black;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(21, 21, 130);
    max-height: 100%;
}

.background {
    background-image: url(moon.jpg);
    background-position: center;
    max-height: 100%;
    overflow-y: hidden;
}

header, nav, main, footer {
    border: black 2px solid;
    border-radius: 5px;
}

header {
    grid-row: 1/2;
    grid-column: 1/3;
    text-align: center;
    padding: 5px;
    background-color: white;
}

nav {
    grid-row: 2/3;
    grid-column: 1/2;
    height: max-content;
    padding: 5px;
    max-height: 600px;
    overflow: auto;
}

main {
    grid-row: 2/3;
    grid-column: 2/3;
    max-height: 600px;
    height: 600px;
    padding: 5px;
    overflow: auto;
}

footer {
    grid-row: 3/4;
    grid-column: 1/3;
    padding: 5px;
    background-color: white;
    text-align: center;
}

.jelly {
    width: 235px;
    display: inline-block;
    max-width: 235px;
    border-radius: 5px;
}

.txt {
    width: 235px;
    display: inline-block;
    max-width: 235px;
    border-radius: 5px;
}

a {
    text-decoration: none;
}

a:visited {
    color: rgb(21, 21, 130);
}

a:hover {
    color: rgb(255, 34, 181);
}

.bows {
    color: rgb(255, 39, 133);
    text-align: center;
}

.images img{
    width: 135px;
    height: 135px;
    object-fit: cover;
    object-position: center;
    margin: 2px;
}