/***** BASICS *****/
    body {
        margin: 0;
        background-image: url(/backgrounds/knight.jpg);
        background-position-x: -150px;
        background-color: #572d2b;
        overflow: hidden;
    }

    @font-face {
        font-family: rascal;
        src: url(/fonts/RASCAL__.TTF);
    }

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

/******* HEADER *******/
    header {
        grid-area: head;
    }

    header h1 {
        font-family: rascal;
        font-size: 4em;
        background-color: lemonchiffon;
    }

    .scroller {
        border: 1px solid #000;
        display: inline-block;
        vertical-align: top;
        width: 946px;
        height: 20px;
        background: white;
        margin-top: -45px;
        color: black;
        overflow: hidden;
        font-family: courier;
    }

    .marquee {
        overflow: hidden;
        display: flex;
        line-height: 20px;
    }

    .marquee span{
        white-space: nowrap;
    }

/***** ASIDE ****/
    aside {
        grid-area: left;
    }

    blockquote {
        background-color: antiquewhite;
    }

    aside img {
        width: 225px;
        height: 200px;
    }

/***** MAIN CONTENT *****/
    main {
        grid-area: main;
    }

    main img {
        width: 500px;
        height: 550px;
    }

    .bubble {
        margin-top: -625px;
        margin-left: 400px;
        width: 300px;
        height: 300px;
        position: relative;
    }

    .bubble img {
        width: 325px;
        height: 450px;
    }

    .text {
        padding: 25px;
        width: 215px;
        height: 200px;
        position: relative;
        margin-top: -200px;
        margin-left: 420px;
        font-family: courier;
        font-size: 1em;
        text-align: center;
    }

    ul {
        list-style-type: none;
    }

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