/***** BASICS *****/
    body {
        margin: 0;
        background-image: url(/backgrounds/square2.jpg);
        background-color: #572d2b;
    }

    @font-face {
        font-family: basiic;
        src: url(/fonts/basiic.ttf);
    }

/***** CONTAINER *****/
    #container {
        display: grid;
        grid-template-areas: 
        "header header header"
        "section section section"
        "main main right"
        "footer footer footer";
        grid-template-rows: 100px 50px 1fr 30px;
        grid-template-columns: 225px 1fr 225px; 
        margin: 0 auto;
        border: 2px #854442 ridge;
        border-radius: 15px;
        margin-top: 15px; 
        width: 1150px;
        height: 97vh;
        overflow: scroll;
        background-image: url(/backgrounds/crinkle.jpg);
    }

/***** HEADER *****/
    header {
        border: 2px #000 ridge;
        grid-area: header;
        border-radius: 15px;
    }

    header h1 {
        margin-top: -150px;
        margin-left: 225px;
        font-family: basiic;
        font-size: 1.7em;
    }

    header img {
        height: 300px;
        width: 300px;
        position: relative;
        margin-top: -100px;
        margin-left: -50px;
    }

/****** SECTION MARQUEEE ******/
    .decor {
        border: 2px #000 ridge;
        grid-area: section;
        font-family: basiic;
        font-size: 2em;
        border-radius: 15px;
    }

/***** MAIN CONTENT ******/
    main {
        border: 2px #000 ridge;
        grid-area: main;
        overflow: scroll;
        padding: 15px;
        font-family: courier;
        border-radius: 15px;
    }

    .intro img {
        width: 350px; 
        height: 350px;
    }

    .intro img:hover {
        transform: rotate(7deg);
    }

    .intro p {
        background-color: #fff4e6;
        border: 2px #000 ridge;
        padding: 5px;
    }

    .intro h2 {
        background-color: darkkhaki;
    }

    .rants img {
        width: 350px;
        height: 350px;
    }

    .rants h2 {
        background-color: darkkhaki;
    }

    .rants img:hover {
        transform: rotate(7deg);
    }

    .rants p {
        background-color: #fff4e6;
        border: 2px #000 ridge;
        padding: 5px;
    }

/***** RIGHT SIDEBAR *****/
    aside {
        border: 2px #000 ridge;
        grid-area: right;
        border-radius: 15px;
    }

    .image img {
        height: 500px;
        width: 400px;
        margin-left: -84px;
        margin-top: -45px;
    }

    .image-two img {
        height: 225px;
        width: 250px;
        margin-top: -85px;
        margin-left: -10px;
    }

/**** FOOTER ****/
    footer {
        border: 2px #000 ridge;
        grid-area: footer;
        background-image: url(/imgs/shrineimage/jiberty/bowlofoatmeal.png);
        background-size: 50px;
        background-position-y: 35px;
        background-color: #261413;
        border-radius: 15px;
    }

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