    html {
        font-size: 1px;
        /*for using REM units*/
    }
    
    * {
        box-sizing: border-box;
    }
    
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        font-size: 16rem;
        font-weight: 400;
        line-height: 1.3;
        color: #222;
    }
    
    h1 {
        font-family: 'Special Elite', cursive;
        font-size: 46px;
    }
    
    h2 {
        font-family: "Ubuntu", Arial, Helvetica, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-variant: normal;
        font-weight: 800;
        line-height: 18.4px;
    }
    
    h3 {
        font-family: "Ubuntu", Arial, Helvetica, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-variant: normal;
        font-weight: 700;
        line-height: 15.4px;
    }
    
    p {
        font-family: 'Roboto', sans-serif;
    }
    
    a:hover {
        color: red;
    }
    
    nav {
        display: flex;
        background-color: black;
        color: white;
        height: 60px;
    }
    
    #logo {
        display: flex;
        align-items: center;
        margin-left: 5px;
    }
    
    #logo-image {
        background-color: white;
        order: 0;
        max-height: 120px;
        height: 100%;
        width: auto;
        border: none;
        border-radius: 50%;
        /* Prevent background color leak outs */
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
    }
    
    #logo h2 {
        font-family: 'Special Elite', cursive;
    }
    
    .header {
        position: relative;
        text-align: center;
        color: white;
        max-width: 2000px;
        margin: 10px auto;
        border: solid;
    }
    
    #header-image {
        width: 100%;
        height: auto;
        max-height: 1000px;
        border: none;
        border-radius: 10px;
    }
    
    .header h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-shadow: #000 0px 0px 1.2px;
        text-transform: uppercase;
    }
    
    .container {
        max-width: 2000px;
        margin: 10px auto;
    }
    
    ul {
        list-style: none;
    }
    
    ul li:before {
        content: "\2714\0020";
    }
    
    #preamble {
        margin-left: 15px;
        margin-top: 35px;
    }
    
    #beforeyoucontainer {
        background-color: hsl(192, 92%, 39%);
        float: right;
        margin-top: 7px;
        margin-left: 15px;
        max-width: 400px;
        border: none;
        border-radius: 5px;
    }
    
    #beforeyou {
        margin: 5px auto;
        background-color: white;
        padding-top: 0px;
        padding-left: 2px;
        padding-right: 7px;
        border: solid;
        width: 97%;
        height: 90%;
    }
    
    #beforeyou h3 {
        text-align: center;
        font-size: 24px;
        font-weight: 1000;
    }
    
    #beforeyou p {
        margin-left: 10px;
    }
    
    #intromaker-container {
        margin: auto;
        width: 95%;
    }
    
    #intromaker-container h2 {
        text-align: center;
    }
    
    #intromaker-header {
        position: relative;
        text-align: center;
        color: white;
        margin-bottom: 10px;
    }
    
    #intromaker-image {
        max-width: 1000px;
        max-height: 1000px;
        width: 100%;
        height: auto;
        border: solid black;
        border-radius: 30px;
    }
    
    #intromaker-header h2 {
        font-family: 'Special Elite', cursive;
        font-size: 38px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -90%);
        text-shadow: #000 0px 0px 1.2px;
        text-transform: uppercase;
    }
    
    #intromaker {
        display: grid;
        margin: 0 auto;
        grid-template-columns: auto auto;
        justify-content: space-evenly;
        padding: 5px 15px 10px 10px;
        border: groove;
        margin: 1px 20px 1px 20px;
    }
    
    label {
        display: block;
        margin: 15px 0 15px 0;
        color: white;
        padding: 5px 5px 5px 5px;
        border: solid black thin;
        border-radius: 5px;
        margin: 2px 2px 2px 0px;
        background-color: hsl(192, 92%, 39%);
        width: 100%;
        font-size: 22rem;
        font-weight: 600;
    }
    
    textarea {
        width: 100%;
        margin-bottom: 5px;
        font-family: inherit;
        font-size: inherit;
    }
    
    #intromakerEnd {
        margin: auto;
        width: 50%;
    }
    
    #generate {
        cursor: pointer;
        margin: 20px auto;
        display: block;
        background-color: rgb(240, 151, 17);
        border: none;
        border-radius: 5px;
        color: white;
        padding: 20px;
        text-align: center;
    }
    
    #generate:hover {
        background-color: rgb(1, 1, 1);
    }
    
    #introductionContainer {
        margin: 10px;
    }
    
    #afterwordContainer {
        text-align: center;
    }
    
    footer {
        text-align: center;
        font-size: 10px;
        font-family: "Oxygen"
    }
    
    @media screen and (max-width: 600px) {
        h1 {
            font-size: 20px;
        }
        h2 {
            font-size: 18px;
        }
        h3 {
            font-size: 18px;
        }
        p {
            font-size: 12px;
        }
        .header h1 {
            top: 40%;
        }
        #intromaker {
            grid-template-columns: auto;
        }
        #intromaker-header h2 {
            font-size: 18px;
        }
    }
    
    @media screen and (max-width: 1000px) {
        .header h1 {
            top: 40%;
        }
        #logo-image {
            height: 40px;
            width: 40px;
        }
    }