/**** BASICS ****/
    body {
        margin: 0;
        background-image: url(/backgrounds/pop.png);
        background-color: #000;
    }

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

/******* CONTAINER ********/
    .wrapper {
        margin: 0 auto;
        margin-top: 5px;
        width: 950px;
        height: 90vh;
        display: grid;
        grid-template: 
        "head head right" 250px
        "left main main" 1fr
        "footer footer footer" 25px
        / 225px 1fr 225px;
        padding: 25px;
        gap: 5px;
    }

/******* HEADER ********/
    header {
        grid-area: head;
        border-top: 3.5px double black;
        border-left: 3.5px double black;
        border-right: 3.5px double black;
        border-bottom: 3.5px double black;
        margin-top: -5px;
        background-image: url(/headers/mars.jpg);
        background-position-y: -50px;
    }

    header h1 {
        font-family: fake receipt;
        font-size: 1.5em; 
        text-align: center;
        margin-top: 215px;
        color: #000;
        background-color: white;
        filter: drop-shadow(0px 1px white) drop-shadow(0 -1px white) drop-shadow(1px 0 white) drop-shadow(-1px 0 white) 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));
    }

/****** RIGHT SIDEBAR ******/
    .right {
        grid-area: right;
        border-top: 3.5px double black;
        border-left: 3.5px double black;
        border-right: 3.5px double black;
        border-bottom: 3.5px double black;
        padding: 10px;
        margin-top: -5px;
        background-image: url(/backgrounds/yuchi.jpeg);
        background-size: 100%;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li a {
        display: block;
        color: black;
        text-decoration: none;
        font-family: courier;
    }

    .button {
        margin-top: 15px;
        height: 25px;
        border: 1px solid #3c2f2f;
        border: 2px inset;
        border-radius: 15px 15px 15px 15px;
        background-image: linear-gradient(#dadcde, white 50%, #dadcde 50%, white);
        box-shadow: 2px 2px 2px #0006;
    }

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 2px 2px 2px 2px rgba(104, 184, 224, 0.601);
        text-decoration: none;
    }

    .button p {
        margin-top: 5px;
        color: black;
        text-align: center;
    }

    .right img {
        margin: -50px; 
        margin-left: 95px; 
        margin-top: 5px; 
        position: relative; 
        width: 150px; 
        height: 200px;
    }

/******* LEFTSIDE BAR *******/
    .left {
        grid-area: left;
    }

    .left h3 {
        margin-bottom: 25px;
        text-align: center;
        font-family: fake receipt;
        background-color: white;
        border: 1px #000 solid;
    }

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

    .anime {
        border-top: 3.5px double black;
        border-left: 3.5px double black;
        border-right: 3.5px double black;
        border-bottom: 3.5px double black;
        height: 250px;
        background-color: white;
        overflow: scroll;
    }

    .anime img{
        margin-left: -1px;
    }

    .manga {
        border-top: 3.5px double black;
        border-left: 3.5px double black;
        border-right: 3.5px double black;
        border-bottom: 3.5px double black;
        height: 250px;
        margin-top: 5px;
        background-color: white;
        overflow: scroll;
    }

    .manga img{
        margin-left: -1px;
    }

/****** MAIN CONTENT ******/
    main {
        grid-area: main;
        border-top: 3.5px double black;
        border-left: 3.5px double black;
        border-right: 3.5px double black;
        border-bottom: 3.5px double black;
        overflow: scroll;
        font-family: courier;
        line-height: 1.5;
        padding: 15px;
    }

    main h1 {
        font-size: 1.5em;
    }

    main h1, h2 {
        font-family: fake receipt;
        background-color: white;
        border: 1px #000 solid;
    }

    main h2 {
        font-size: 1em;
    }

    main img {
        width: 100px;
        height: 150px;
        margin: 5px;
        animation-name: floating; 
        animation-duration: 3s; 
        animation-iteration-count: infinite; 
        animation-timing-function: ease-in-out;
    }

    @keyframes floating { 
    0% { 
    transform: translate(0,  0px); 
    } 

    50%  { 
    transform: translate(0, 5px); 
    } 

    100%   {
    transform: translate(0, -0px); 
    } 
    } 

/****** 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;
        }
    }