header {
    width: 100%;
    height: 40px;
    display: block;
    text-align: center;
    font-family: Garamond, serif;
    background-color: maroon;
    color:white;
}

aside {
    float: left;
    background-color: gray;
    align-self: left;
    width: 100px;
    height:1200px;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: darkgray;
}

nav {
    display: block;
    overflow: auto;
    padding: 10px;
    text-align: center;
}

body {
    background-color:white;
}

h2, h3, h4, h5, h6 {
    text-align: center;
    font-size: 32px;
    background-color: maroon;
    color: white;
}

main {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-template-rows: 400px 400px 400px;
    outline: 2px solid black;
    grid-gap: 5px;
}

main > * {
    outline: 2px solid black;
    padding: 5px;
}

p {
    margin: 10px;
}

div#kintokiimg {
    grid-row: 1;
    grid-column: 1;
}

div#kintokiimg > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

div#kintoki {
    grid-row: 2;
    grid-column: 1;
    text-align: center;
    background-color:tan;
    font-size: x-large;
    overflow: scroll;
    font-size:21px;
}

div#mainimg {
    grid-row: 1/2;
    grid-column: 2;
}

div#mainimg > img {
    width: 100%;
    height: 200%;
    object-fit:fill;
}

div#odinimg {
    grid-row: 1;
    grid-column: 3;
}

div#odinimg > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

div#odin {
    grid-row: 2;
    grid-column: 3;
    text-align: center;
    background-color:tan;
    overflow: scroll;
    font-size:21px;
}

div#About {
    grid-row: 3;
    grid-column: 1;
    text-align: center;
    background-color:tan;
    overflow: scroll;
    font-size:21px;
}

div#Roster {
    grid-row: 3;
    grid-column: 2;
    text-align: center;
    background-color:tan;
    overflow: scroll;
    font-size:21px;
}

div#Info {
    grid-row: 3;
    grid-column: 3;
    text-align: center;
    background-color:tan;
    overflow: scroll;
    font-size:21px;
}

footer {
    display: block;
    background-color: maroon;
    height:50px;
}

footer > img {
    width: 15%;
    height: 80%;

}
