.container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-auto-rows: minmax(75px, auto);
    grid-gap: 8px;
    margin: 0 auto;
    grid-template-areas:
        "header header header"
        "asideLeft main asideRight";
    padding-top: 0;
    margin-left: 32px;
    margin-right: 32px;
}

.asideLeft {
    grid-area: asideLeft;
}

.asideRight {
    grid-area: asideRight;
}

main {
    grid-area: main;
}

header {
    display: grid;
    grid-area: header;
    grid-template-areas:
        "title"
        "nav";
    padding-bottom: 16px;
}

.nav {
    margin: auto;
    background: #006291;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    box-shadow: 4px 4px #9799BA;
}

.nav>a {
    text-decoration: none;
    color: #F1F1F1;
    padding: 8px;
    position: relative;
    transition: all 0.4s ease;
    display: inline-block;
}

.nav>a:hover {
    transform: scale(1.1);
}

body {
    background-color: #F1F1F1;
    font-family: PixeloidSans;
    color: #006291;
    /*background-image: url("images/cloud_banner.png");*/
    image-rendering: pixelated;
    background-repeat: no-repeat;
    background-size: cover;
}

.box {
    background-color: #FEADB9;
    border: 4px solid #006291;
    padding: 6px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.boxTitle {
    height: 29px;
    border: 3px solid #006291;
    /*background-color: #D1D2E1;*/
    background-image: linear-gradient(90deg, #D1D2E1 30%, #F1F1F1 60%, #D1D2E1 90%);
    padding: 3px;
    margin: 0px;
    image-rendering: pixelated;
}

.boxContent {
    background-color: #F9E1E0;
    padding: 3px;
    padding-left: 8px;
    margin-top: 6px;
    border: 3px solid #006291;
}

.boxContent>p {
    display: inline-block;
    padding: 3px;
    margin: 0px;
}

.boxTitle>p {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: large;
    vertical-align: super;
    height: 29px;
}

.windowButtons {
    float: right;
}

@font-face {
    font-family: SuperChibi;
    src: url("fonts/SuperChiby-BL62V.ttf");
}

@font-face {
    font-family: PixeloidSans;
    src: url("fonts/PixeloidSans-lxa3y.ttf");
}

h1 {
    text-align: center;
    font-size: 104px;
    color: #006291;
    text-shadow: 4px 4px #9799BA;
    font-family: SuperChibi;
    padding-top: 32px;
    padding-bottom: 16px;
    margin: 0px;
}

#nala_img {
    display: block;
    width: 75%;
    margin: auto;
    border: 3px solid #006291;
    padding: 6px;
    background-color: #D1D2E1;
}

.hide:hover, .enlarge:hover, .exit:hover {
    background-color: #9799BA;
    border-radius: 20%;
}

ul {
    margin: 0px;
    padding-bottom: 4px;
}

.links .links:visited {
    text-decoration: none;
    color: #006291;
}

.links:hover {
    color: #5d0570;
}