#jim {
    display: grid;
    background-color: white
}

#foreBanner {
    display: grid;
    grid-area: foreBanner;
}

#foreIntro {
    display: grid;
    grid-area: foreIntro;
}

#preformLine {
    display: grid;
    grid-area: preformLine;
}

#form {
    display: grid;
    grid-area: form;
}

/*MOBILE STYLE*/
@media screen and (max-width: 550px) {
    #jim {
        width: 100%;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(5, auto);
        grid-auto-rows: minmax(auto);
        grid-gap: .1vh;
        margin: 0;
        grid-template-areas:
    'foreBanner foreBanner foreBanner foreBanner foreBanner'
    'foreIntro foreIntro foreIntro foreIntro foreIntro'
    'preformLine preformLine preformLine preformLine preformLine'
    'form form form form form'
    }

    #foreBanner {
        display: grid;
        height: 20vh;
        grid-gap: 1%;
        width: 100%;
        background-image: url(img/capNight.jpg);
        background-size: 100%;
        opacity: 100%;
        align-items: end;
    }

    #blackBox {
        display: grid;
        height: 20vh;
        grid-gap: 1%;
        width: 100%;
        height: 0%;
        background-color: black;
        color: white;
        font-family: 'Assistant';
        font-size: 3.5vh;
        opacity: 70%;
        text-align: center;
    }

    #blackBoxText {
        padding-top: 7vh;
        opacity: 0%;
    }

    #foreBannerText {
        position: absolute;
        font-family: 'Assistant';
        color: white;
        font-size: 10vw;
        margin-left: 5%;
        opacity: 0%
    }

    #foreIntro {
        display: grid;
        height: 10vh;
        grid-gap: 1%;
        width: 100%;
    }

    #foreIntroText {
        display: grid;
        height: 0vh;
        grid-gap: 1%;
        width: 100%;
        margin-left: 5%;
        background-size: 100%;
        opacity: 80%;
        font-family: 'Assistant';
        color: #04233c;
        font-size: 10vw;
        opacity: 0%;
    }

    #form {
        display: grid;
        height: 530vh;
        grid-gap: 1%;
        width: 95%;
        margin-bottom: 10vh;
        margin-left: 2.5%;
        background-color: #f0ecec;
        border-radius: 2vw;
    }

    #introText {
        font-family: 'Assistant';
        font-size: 3vh;
        margin-left: 5%;
        margin-right: 5%;
        text-align: center;
        margin-top: 5vh;
    }

    label {
        font-family: 'Assistant';
        margin-left: 5%;
        font-size: 3vh;
    }

    .textarea {
        height: 20vh;
        background-color: white;
        opacity: 100%;
        width: 90%;
        margin-left: 5%;
        font-family: 'Assistant';
        font-size: 3vh;
        border-radius: 1vw;
    }

}

/* PC STYLE */
@media screen and (min-width: 550px) {
    #jim {
        width: 100%;
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(7, auto);
        grid-auto-rows: minmax(auto);
        grid-gap: 0vh;
        margin: 0;
        grid-template-areas:    
    'foreBanner foreBanner foreBanner foreBanner foreBanner foreBanner foreBanner'
    'foreIntro foreIntro foreIntro foreIntro foreIntro foreIntro foreIntro'
    'preformLine preformLine preformLine preformLine preformLine preformLine preformLine'
    'form form form form form form form'

    }

    #foreBanner {
        display: grid;
        height: 25vh;
        grid-gap: 1%;
        width: 100%;
        background-image: url(img/capitolNew.jpg);
        background-size: 100%;
        opacity: 100%;
        align-items: end;
    }

    #blackBox {
        display: grid;
        height: 25vh;
        grid-gap: 1%;
        width: 60%;
        height: 0%;
        background-color: black;
        color: white;
        font-family: 'Assistant';
        font-size: 3.5vh;
        opacity: 70%;
        text-align: center
    }

    #blackBoxText {
        padding-top: 5vh;
        opacity: 0%;
    }

    #foreBannerText {
        position: absolute;
        font-family: 'Assistant';
        color: white;
        font-size: 10vw;
        margin-left: 5%;
        opacity: 0%
    }

    #foreIntro {
        display: grid;
        height: 30vh;
        grid-gap: 1%;
        width: 100%;
    }

    #foreIntroText {
        display: grid;
        height: 0vh;
        grid-gap: 1%;
        width: 100%;
        margin-left: 5%;
        background-size: 100%;
        opacity: 80%;
        font-family: 'Assistant';
        color: #04233c;
        font-size: 10vw;
        opacity: 0%;
    }

    #form {
        display: grid;
        height: 560vh;
        grid-gap: 1%;
        width: 80%;
        margin-top: -10%;
        margin-bottom: 10vh;
        margin-left: 10%;
        background-color: #f0ecec;
        border-radius: 2vw;
    }

    #introText {
        font-family: 'Assistant';
        font-size: 3vh;
        margin-left: 10%;
        margin-right: 10%;
        text-align: center;
        margin-top: 5vh;
    }

    label {
        font-family: 'Assistant';
        margin-left: 5%;
        font-size: 3vh;
    }

    .textarea {
        height: 20vh;
        background-color: white;
        opacity: 100%;
        width: 70%;
        margin-left: 5%;
        font-family: 'Assistant';
        font-size: 3vh;
        border-radius: 1vw;
    }
}

/* PRINT STYLE */
@media print {
    #jim {
        width: 100%;
        background-color: white;
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(7, auto);
        grid-auto-rows: minmax(auto);
        grid-gap: 0vh;
        margin: 0;
        grid-template-areas:    
    'foreBanner foreBanner foreBanner foreBanner foreBanner foreBanner foreBanner'
    'foreIntro foreIntro foreIntro foreIntro foreIntro foreIntro foreIntro'
    'preformLine preformLine preformLine preformLine preformLine preformLine preformLine'
    'form form form form form form form'
    }

    #foreBanner {
        display: grid;
        height: 20vh;
        grid-gap: 1%;
        width: 100%;
        background-image: url(img/capitolNew.jpg);
        background-size: 100%;
        opacity: 100%;
        align-items: end;
    }

    #blackBox {
        display: grid;
        height: 25vh;
        grid-gap: 1%;
        width: 60%;
        height: 0%;
        background-color: black;
        color: white;
        font-family: 'Assistant';
        font-size: 3.5vh;
        opacity: 70%;
        text-align: center
    }

    #blackBoxText {
        padding-top: 5vh;
        opacity: 0%;
    }

    #foreBannerText {
        position: absolute;
        font-family: 'Assistant';
        color: white;
        font-size: 10vw;
        margin-left: 5%;
        opacity: 0%
    }

    #foreIntro {
        display: grid;
        height: 10vh;
        grid-gap: 1%;
        width: 100%;
    }

    #foreIntroText {
        display: grid;
        height: 0vh;
        grid-gap: 1%;
        width: 100%;
        margin-left: 5%;
        background-size: 100%;
        opacity: 80%;
        font-family: 'Assistant';
        color: #04233c;
        font-size: 3vw;
        opacity: 0%;
    }

    #form {
        display: grid;
        height: 400vh;
        grid-gap: 1%;
        width: 100%;
        margin-top: -10%;
        margin-bottom: 10vh;
        background-color: white;
        border-radius: 2vw;
    }

    #introText {
        font-family: 'Assistant';
        font-size: 14pt;
        margin-left: 10%;
        margin-right: 10%;
        text-align: center;
        margin-top: 5vh;
    }

    label {
        font-family: 'Assistant';
        margin-left: 5%;
        font-size: 14pt;
    }

    #question2 {
        page-break-before: always;
        margin-top: 10%;
    }

    #question4 {
        page-break-before: always;
        margin-top: 10%;
    }

    #question6 {
        page-break-before: always;
        margin-top: 10%;
    }

    #question8 {
        page-break-before: always;
        margin-top: 10%;
    }

    #question10 {
        page-break-before: always;
        margin-top: 10%;
    }

    .textarea {
        height: 20vh;
        background-color: white;
        opacity: 100%;
        width: 70%;
        margin-left: 5%;
        font-family: 'Assistant';
        font-size: 12pt;
        border-radius: 1vw;
    }

    #printPDF {
        visibility: hidden;
    }
}