/****** BASE SETTINGS ******/
   * {
        box-sizing: border-box;
    }

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

    @font-face {
        font-family: basteleurbold;
        src: url(fonts/basteleur-master/fonts/ttf/Basteleur-Bold.ttf);
    }

    body {
        margin: 0;
        margin-left: -10px;
        background-image: url(backgrounds/theatre.jpg);
        background-position-y: -125px;
    }

    /*** LAYOUT ***/

    .wrapper {
        width: 100vw;
        height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 100px  50px 1fr 1fr 50px;
        gap: 10px;
        padding: 25px;
    }

    /*** HEADER ***/

    header {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 3;
        background-image: url(backgrounds/lamour.jpeg);
        border: palegoldenrod 2px ridge;
    }

    header h1 {
        margin-top: 85px;
        position: relative;
        font-family: basteleurbold;
        font-size: 4em; 
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #000;
        -webkit-animation: glow 2.0s linear infinite;
        animation: glow 2.0s linear infinite;
    }

    @keyframes glow {
        0% { text-shadow: 0 0 15px #000;}
        50% { text-shadow: none; }
        100% { text-shadow: 0 0 15px #000;}
    }

    @-webkit-keyframes glow {
        0% { text-shadow: 0 0 15px palegoldenrod; }
        50% { text-shadow: none; }
        100% { text-shadow: 0 0 15px palegoldenrod; }
    }

    /*** MAIN CONTENT ***/

   .content-large {
        grid-row-start: 2;
        grid-row-end: span 2;
        grid-column-start: 1;
        grid-column-end: 3;
        height: 200px;
        width: 700px;
        background-color: rgba(210, 180, 140, 0.72);
        border: palegoldenrod 2px ridge;
        margin-top: 25px;
        font-family: fake receipt;
        overflow: scroll;
   }

   .content-large p {
    background-color: lightsalmon;
   }


   .content-large-three {
        margin: 0;
        margin-top: 15px;
        height: 650px;
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
        
    }

    .left {
        margin-top: 25px;
    }

    .content-small-left {
        height: 390px;
        background-color: rgba(210, 180, 140, 0.72);
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
        overflow: scroll;
    }

    .content-small-left h2 {
        background-color: lightpink;
    }

    .content-small-left hr {
        border-top: palegoldenrod 2px ridge;
    }

    .content-small-left-two {
        height: 390px;
        margin-top: 15px;
        background-color: rgba(210, 180, 140, 0.72);
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
        overflow: scroll;
    }

    .content-small-left-two h2 {
        background-color: lightpink;
    }

    .content-small-left-two p {
        background-color: lightsalmon;
    }

  
    /*** RIGHTSIDEBAR ***/
    .right {
        margin-top: 25px;
    }

    .content-small {
        height: 540px;
        background-color: rgba(210, 180, 140, 0.72);
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
    }


    .content-small-two {
        height: 390px;
        margin-top: 15px;
        background-color: rgba(210, 180, 140, 0.72);
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
        overflow: scroll;
    }

    .content-small-two h2 {
        background-color: lightpink;
    }

    .content-small-two p {
        background-color: lightsalmon;
    }
    /*** FOOTER ***/

    footer {
        grid-column-start: 1;
        grid-column-end: 4;
        border: palegoldenrod 2px ridge;
        font-family: fake receipt;
        background-color: palegoldenrod;
    }

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

        .right {
            display: none;
        }

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

        nav {
            padding: 0;
        }

        nav > ul {
            padding-top: 0.5em;
        }

        nav > ul li > a,
        nav > ul li > details summary,
        nav > ul li > strong {
            padding: 0.5em;
        }

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


        .images img {
            flex-wrap: wrap;
            width: 100%;
        }

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