.box {
    max-width: 1100px;
    margin: 50px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 250px;
}

header, nav, main, footer {
    border: navy 2px dotted;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    background-color: maroon;
    
}

.wrapper{
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
}

.gif1 {
    background-color: aliceblue;
    width: auto;
}

.photo {
    background-color: black;
    width: auto;
}

.gif2 {
    background-color: antiquewhite;
    width: auto;
}

nav {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: max-content;
    text-align: center;
    background-color: rgb(226, 182, 116);
    line-height: 25px;
}

main {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: max-content;
    text-align: left;
    padding: 20px;
    color: maroon;
    background-color: tan;
}

footer {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    background-color: black;
}

body {
    background-color: rgb(0, 0, 81);
}

p {
    color: maroon;
    font-family: 'Times New Roman', Times, serif;
}

h1 {
    color: red;
}

h2 {
    color: rgb(160, 0, 0);
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
    text-align: center;
}

ul {
    padding: 0;
}

ul li::marker {
    content: none;
    color: transparent;
}

a:link, a:visited, a:hover {
    color: rgb(51, 81, 171);
    font-family: 'Times New Roman', Times, serif;
    background-color: transparent;
    text-decoration: underline;
}