/**** BASICS ****/

    body {
        margin: 0;
        background-image: url(/backgrounds/gifbground-804-0009.gif);
        background-color: rgb(185, 99, 113);
    }

    @font-face {
        font-family: fake receipt;
        src: url(/fonts/Fake\ Receipt.otf);
    }

/***** CONTAINER ****/

    .container {
        display: grid;
        grid-template-columns: 1fr repeat(6, minmax(auto, 10em)) 1fr;
        grid-template-rows: minmax(1em, auto) 1fr auto minmax(1em, auto);
        gap: 5px;
        padding: 25px;
    }

/***** HEADER *****/

    header {
        border-top: 3.5px double rgb(153, 197, 225);
        border-left: 3.5px double rgb(153, 197, 225);
        border-right: 3.5px double rgb(153, 197, 225);
        border-bottom: 3.5px double rgb(153, 197, 225);
        grid-column: 2 / 6;
        height: 300px;
        background-image: url(/Gifs/anime/nanami.gif);
        background-repeat: no-repeat;
        background-size: cover;
    }

    header h1 {
        font-family: fake receipt;
        font-size: 2em; 
        text-align: center;
        margin-top: 250px;
        color: rgb(153, 197, 225);
        filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black) drop-shadow(0px 1px rgb(8, 7, 8)) drop-shadow(0 -1px rgb(2, 2, 2)) drop-shadow(1px 0 rgb(16, 15, 15)) drop-shadow(-1px 0 rgb(7, 7, 7));
    }

/***** ASIDE RIGHT CORNER *****/

    aside {
        border-top: 3.5px double rgb(153, 197, 225);
        border-left: 3.5px double rgb(153, 197, 225);
        border-right: 3.5px double rgb(153, 197, 225);
        border-bottom: 3.5px double rgb(153, 197, 225);
        grid-column: 6 / 8;
        width: 300px;
        height: 300px;
        background-image: url(/backgrounds/nosekiss.jpeg);
    }

    .wrapper {
        padding: 25px;
        margin-left: 40px;
        margin-top: 55px;
    }

    .button {
        border: 2px black dotted;
        border-radius:10px;
        background:whitesmoke;
        font-family: fake receipt;
        color: black;
        padding: 5px;
    }

    .button:hover {
        transform: translateY(-5px);
    }

    .click:hover, .click-two:hover, .click-three:hover {
        transform: translateY(-5px);
    }

/***** MAIN LEFT CONTENT *****/

    main {
        grid-column: 2 / 5;
        grid-row: 3 / 4;
        width: 300px;
        height: 500px;
    }

    main h3 {
        margin-bottom: 25px;
        text-align: center;
        font-family: fake receipt;
    }

    main li {
        text-align: left;
        margin-left: 30px;
        font-size: 1em;
        font-family: Courier;
    }

    .section {
        border-top: 3.5px double rgb(153, 197, 225);
        border-left: 3.5px double rgb(153, 197, 225);
        border-right: 3.5px double rgb(153, 197, 225);
        border-bottom: 3.5px double rgb(153, 197, 225);
        height: 300px;
        overflow: scroll;
        background-color: rgb(247, 197, 210);
    }

    .section-two {
        border-top: 3.5px double rgb(153, 197, 225);
        border-left: 3.5px double rgb(153, 197, 225);
        border-right: 3.5px double rgb(153, 197, 225);
        border-bottom: 3.5px double rgb(153, 197, 225);
        height: 300px;
        margin-top: 5px;
        overflow: scroll;
        background-color: rgb(247, 197, 210);
    }

/***** MAIN CONTENT *****/

    #content {
        border-top: 3.5px double rgb(153, 197, 225);
        border-left: 3.5px double rgb(153, 197, 225);
        border-right: 3.5px double rgb(153, 197, 225);
        border-bottom: 3.5px double rgb(153, 197, 225);
        grid-column: 5 / 8;
        width: 650px;
        height: 612px;
        margin-left: -185px;
        background-image: url(/backgrounds/pop.png);
        overflow: scroll;
    }

    #content {
        line-height: 1.5;
        font-family: Courier;
    }

    #content h1 {
        font-size: 1em;
    }

    #content h1, h2 {
        font-family: fake receipt;
    }

    #content img {
        width: 100px;
        height: 150px;
        margin: 5px;
    }

    #content section{
        padding: 25px;
    }

/****** ACCESSABILITY *******/
    #skip-to-content-link {
        position: fixed;
        top: 0;
        left: 0;
        display: inline-block;
        padding: 0.375em 0.75em;
        line-height: 1;
        font-size: 1.25em;
        background-color: var(--content-background-color);
        color: var(--text-color);
        transform: translateY(-3rem);
        transition: transform 0.1s ease-in;
        z-index: 99999999999;
    }

    #skip-to-content-link:focus, #skip-to-content-link:focus-within {
        transform: translateY(0);
    }

/****** RESPONSIVENESS ******/
    @media (max-width:800px) {
        body {
            font-size: 14px;
        }

        .layout {
            width: 100%;
            grid-template: "header" auto "main" auto "footer" auto / 1fr;
        }

        .left {
            display: none;
        }

        aside {
            border-bottom: 1px solid;
            padding: 9px;
            font-size: 0.9em;
        }

        main {
            max-width: none;
            padding: 15px;
        }

         #skip-to-content-link {
            font-size: 1rem;
        }
    }