html, body
{
    margin: 0px;
    padding: 0px;
    border: 0px;
}

#pageWrapper
{
    height: fit-content;
    position: relative;
    width: calc(100vw - (100vw - 100%));
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', 'sans-serif';
    color: rgb(255, 237, 199);
    background-image: linear-gradient(rgb(102, 91, 110), rgb(47, 42, 51));
    display: flex;
    flex-direction: column;
    z-index: 2;
}

#headerWrapper
{
    display: flex;
    position: fixed;
    background-color: rgb(102, 91, 110);
    color: rgb(255, 237, 199);
    z-index: 3;
    width: calc(100vw - (100vw - 100%));
    height: 5em;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

#headerWrapper h1
{
    text-wrap: nowrap;
}

#navWrapper
{
    display: flex;
    height: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-left: 30vw;
}

#navWrapper h2
{
    margin: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-radius: 0.6em;
}

.link
{
    color: rgb(255, 237, 199);
    text-decoration: none;
}

#currentNav
{
    background-color: rgb(74, 67, 80);
}

#bannerWrapper
{
    margin-top: 5em;
    background-image: url(../img/banner_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    size: fit-content;
    height: 40vh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    z-index: -3;
}

#someHolder
{
    display: flex;
    flex-direction: row;
    height: inherit;
    width: 100%;
    justify-content: end;
    position: fixed;
    top: 90px;
    left: -5px;
    z-index: -2;
}

.logo
{
    width: 60px;
    margin-right: 10px;
    height: 60px;
    position: relative;
    z-index: -2;
}

#titleWrapper
{
    color: rgb(255, 237, 199);
    display: inline-block;
    position: relative;
    justify-content: center;
    align-content: center;
    font-size: xx-large;
    margin: 8em auto 6em auto;
    padding-bottom: 0.2em;
    z-index: 0;
}

#contentWrapper
{
    background-image: linear-gradient(rgb(102, 91, 110), rgb(47, 42, 51));
    color: rgb(255, 237, 199);
    height: fit-content;
    min-height: calc(100vh - 9em - 40vh);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 4em;
    z-index: 0;
}

#stuffWrapper
{
    color: rgb(255, 237, 199);
    height: fit-content;
    width: 100%;
    position: relative;
    border-top: 2em;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: auto;
    flex-direction: row;
    flex-wrap: wrap;
    background-image: none;
    z-index: 0;
}

.projectWrapper
{
    width: fit-content;
}

.removeBottomMargin
{
    margin-bottom: 0px;
    padding-bottom: 0.6em;
}

#firstParagraph
{
    display: flex;
    flex-direction: column;
}

#firstParagraph p
{
    padding-top: 0;
}

#thanks
{
    display: flex;
    flex-direction: column;
    width: inherit;
    padding: 1em 2em 1em 3em;
}

#devs
{
    font-size: x-large;
    height: fit-content;
    padding: 1.5em 2em 1.5em 2em;
    border-right: none;
    border-color: rgb(255, 237, 199);
    border-width: 3px;
}

#devs li
{
    width: 9em;
    margin-left: 2em;
    margin-bottom: 0.3em;
}

.topMarginDevs
{
    margin-top: 0.5em;
}

.itemList
{
    display: flex;
    flex-direction: column;
    width: inherit;
    padding: 0em 2em 0em 18em;
}

.textAligner
{
    padding: 0 0 6em 0;
    margin: 0;
    border: 0;
    flex: 1 1 100%;
}

.textAligner h1
{
    font-size: 3.4em;
}

a, b
{
    color: rgb(255, 187, 148);
}

h1, h2
{
    width: fit-content;
}

h1
{
    padding-left: 0.3em;
    padding-right: 0.3em;
    margin-top: 0em;
    margin-bottom: 0em;
    display: flex;
    align-self: center;
}

h2
{
    margin: 5px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: xx-large;
}

p
{
    font-size: x-large;
    padding: 0em;
    padding-left: 3em;
    padding-right: 2em;
}

.projectVideoEmbed
{
    position: relative;
    overflow: hidden;
    width: 70%;
    height: 100%;
    padding-top: 0%;
    padding-right: 6em;
    padding-bottom: calc(29.3% + 4em);
}

.projectVideoEmbed iframe
{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: calc(100% - 6em);
    height: calc(100% - 4em);
}

.videoLinkReplacer
{
    font-size: xx-large;
}

li
{
    font-size: x-large;
}

.headContent
{
    color: rgb(255, 237, 199);
    padding-top: 1em;
    display: flex;
    width: fit-content;
    text-align: center;
    margin: auto;
    text-wrap: wrap;
    font-size: 2.5em;
}

.projectWrapper a
{
    text-decoration: none;
}

.headText
{
    padding: 2em 2.5em 2em 2.5em;
    display: flex;
    height: fit-content;
    font-size: xx-large;
    margin: auto;
    z-index: 0;
}

.imgCenterer
{
    display: flex;
    justify-content: center;
}

.imgHandler
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-right: 10em;
    margin-left: 10em;
}

#bulletpoints
{
    display: flex;
    flex-direction: column;
    width: calc(100vw - (100vw - 100%));
    height: fit-content;
    margin: 0 0 2em 0;
}

.cvWrapper
{
    width: calc(100vw - (100vw - 100%));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cvWrapper p
{
    padding: 1em 1em 1em 2em;
    width: calc(100% - 3em);
}

.cvWrapper h2
{
    margin: 1em;
}

#bulletpoints h2
{
    margin: 0;
    padding: 2em 0 2em 0;
    align-self: center;
}

#bulletpoints li
{
    padding: 0 0 0.5em 0;
}

li#finalBullet
{
    padding: 0;
}

#formWrapper
{
    width: 75vw;
    display: flex;
    background-color: rgb(102, 91, 110);
    margin-top: 3em;
    flex-wrap: wrap;
}

#formPrompts
{
    display: flex;
    flex: 1 1 35.5%;
    width: 40%;
    font-size: 1.8em;
    align-items: end;
    flex-direction: column;
    margin-top: 0.63em;
    gap: 0.58em;
}

#formPrompts h3
{
    margin: 0;
}

form
{
    display: flex;
    flex: 1 1 60%;
    width: 60%;
    flex-direction: column;
    align-items: flex-end;
    font-family: inherit;
    gap: 1em;
    padding: 1em 1em 1em 1em;
}

input, textarea
{
    width: 98%;
    background-color: rgb(74, 67, 80);
    color: rgb(255, 237, 199);
    font-size: 1.8em;
    padding: 0.1em;
    font-family: inherit;
    border: none;
}

textarea
{
    height: 6em;
    font-size: 1.8em;
}

#submitBtn
{
    background-color: rgb(74, 67, 80);
    color: rgb(255, 237, 199);
    font-size: 1.6em;
    border: none;
    margin: auto;
    margin-bottom: 0.65em;
    padding: 0.1em 0.3em 0.1em 0.3em;
    border-radius: 0.3em;
    align-self: center;
    transition: 0.2s ease-in-out;
}

#submitBtn h3
{
    margin: 0;
}

#submitBtn:hover
{
    background-color: rgb(54, 49, 59);
}
   
input[type=text]:focus, input[type=email]:focus, textarea:focus
{
    outline: rgb(255, 237, 199) solid 2px;
}

#msg
{
    height: 4em;
    resize: vertical;
}

.textBackground
{
    background-color: rgb(88, 78, 95);
    padding-bottom: 0.15em;
}

.projectImg
{
    width: 30em;
    height: 16.9em;
    border-radius: 1em;
    border: 1em;
    border-style: solid;
    border-color: rgb(114, 91, 109);
    margin: 1em;
}

.container
{
    position: relative;
}

.container a
{
    pointer-events: none;
    touch-action: none;
    cursor: default;
}

.overlay
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 18.9em;
    width: 32em;
    transition: .5s ease-in-out;
    background-color: rgb(88, 78, 95);
    color: rgb(255, 237, 199);
    padding: 0;
    border: 0;
    margin: 1em;
    border-radius: 1em;
}

.container:hover .overlay
{
    opacity: 1;
}

.container:hover a
{
    pointer-events: all;
    cursor: pointer;
}

.container:active a
{
    transition: 1s;
    touch-action: all;
}

.projectDesc
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;    
    height: 80%;
    width: 80%;
    margin: auto;
    padding: 0;
}

/*
*****************************************************
RESPONSIVITY BELOW THIS POINT
*****************************************************
*/

@media only screen and (max-width:550px)
{
    #headerWrapper h1
    {
        font-size: 5.8vw;
    }

    #navWrapper
    {
        padding-left: 0.3em;
    }
    
    #navWrapper h2
    {
        font-size: 4vw;
    }
    
    .logo
    {
        width: 50px;
        height: 50px;
    }

    #titleWrapper
    {
        flex-wrap: nowrap;
        font-size: 6vw;
        padding-left: 0em;
    }

    #formPrompts
    {
        display: none;
    }

    form
    {
        flex: 1 1 100%;
        width: 100%;
        padding: 1em;
        margin: 0;
    }

    input, textarea
    {
        width: 99%;
    }

    .headText
    {
        font-size: 6vw;
        padding: 2em 1em 2em 1em
    }

    #devs h2
    {
        font-size: 1.2em;
    }

    #devs li
    {
        font-size: 0.9em;
    }

    p
    {
        font-size: 1.4em;
    }

    .projectVideoEmbed
    {
        display: none;
    }

    .videoLinkReplacer
    {
        width: 90%;
    }
    
    .textAligner
    {
        padding-bottom: 1em;
    }

    h2.headContent
    {
        font-size: 2.2em;
    }

    .headContent
    {
        font-size: 7vw;
        margin-bottom: 1em;
    }
    
    .imgHandler
    {
        flex-direction: column;
    }

    .projectImg
    {
        width: 87vw;
        height: 49vw;
        margin: 3.5vw;
        margin-bottom: 0em;
        border: 3vw;
        border-style: solid;
        border-color: rgb(114, 91, 109);
    }

    .overlay
    {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        height: 92.7%;
        width: 93%;
        transition: .5s ease-in-out;
        background-color: rgb(88, 78, 95);
        border-radius: 1em;
        margin: 3.5% 3.5% 6% 3.5%;
    }

    p
    {
        padding: 1em;
    }
    
    .cvWrapper p
    {
        padding: 1em;
        width: calc(100% - 2em);
    }

    #aboutMe
    {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    #bulletpoints li
    {
        margin: 0 1em 0 2em;
        font-size: 1.4em;
    }

    p.projectDesc
    {
        font-size: 4.8vw;
    }
}

/* FEW CHANGES FOR TEENY TINY MOBILE SCREENS */
@media only screen and (max-width:380px)
{
    #navWrapper
    {
        padding-left: 5vw;
        flex-direction: column;
    }

    #headerWrapper h1
    {
        font-size: 1.2em;
    }

    #navWrapper h2
    {
        font-size: 0.7em;
    }
    
    .textAligner h1
    {
        font-size: 3em;
    }

    #devs h2
    {
        font-size: 1em;
    }

    #devs li
    {
        font-size: 0.9em;
    }

    #bulletpoints h2
    {
        padding-bottom: 2em;
    }

    p
    {
        font-size: 1.2em;
    }

    .projectVideoEmbed
    {
        display: none;
    }

    .slash
    {
        display: none;
    }

    .overlay
    {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        height: 54.7vw;
        width: 93%;
        transition: .5s ease-in-out;
        background-color: rgb(88, 78, 95);
        border-radius: 1em;
        margin: 3.5% 3.5% 6% 3.5%;
    }
}

@media only screen and (max-width:950px) and (min-width:551px)
{
    #navWrapper
    {
        padding-left: 8vw;
    }
    
    #navWrapper h2
    {
        font-size: 1.4em;
    }

    #titleWrapper
    {
        flex-wrap: nowrap;
        padding-left: 0em;
    }

    #formPrompts
    {
        display: none;
    }

    form
    {
        flex: 1 1 100%;
        width: 100%;
        padding: 1em;
        margin: 0;
    }

    input, textarea
    {
        width: 99%;
    }

    .imgHandler
    {
        flex-direction: column;
    }

    #thanks
    {
        padding: 1em 1em 1em 5em;
    }

    p
    {
        padding: 1em;
        padding-left: 2em;
    }

    .projectVideoEmbed
    {
        display: none;
    }

    .videoLinkReplacer
    {
        width: 90%;
    }

    #aboutMe
    {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    #bulletpoints li
    {
        margin: 0 1em 0 3em;
    }
}

@media only screen and (min-width:951px)
{
    #titleWrapper
    {
        flex-wrap: nowrap;
        padding-left: 0em;
    }

    #desktopWrapper
    {
        display: flex;
        flex-direction: column;
    }
    
    #navWrapper h2
    {
        padding-top: 0.3em;
        padding-bottom: 0.3em;
    }

    #firstParagraph
    {
        flex-direction: row;
        margin: 3em 10vw 0 10vw;
    }

    #firstParagraph p
    {
        margin: 0;
    }
    
    #bulletpoints
    {
        width: calc(30vw - 1em - 3px);
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 1em;
        border-right: 3px solid rgb(255, 237, 199);
    }
    
    .cvWrapper
    {
        width: 50vw;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 12.5vw 0 5vw;
    }
    
    .cvWrapper h2, #bulletpoints h2
    {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    #bulletpoints h2, #bulletpoints li
    {
        margin: 0 0 0 12.5vw;
    }

    #bulletpoints h2
    {
        padding-bottom: 1.5em;
    }
    
    .cvWrapper p
    {
        margin: 0;
        padding: 2em 0 3em 0;
        width: 100%;
    }

    #bulletpoints li
    {
        width: auto;
    }

    input::placeholder, textarea::placeholder
    {
        opacity: 0;
    }
    
    #devs
    {
        border-right: solid;
    }

    .imgHandler
    {
        justify-content: space-around;
        gap: 10vw;
    }

    #thanks
    {
        padding: 1em 5em 1em 5em;
        margin-left: 10vw;
        margin-right: 10vw;
    }

    p
    {
        font-size: x-large;
        padding: 2em;
        margin-left: 10vw;
        margin-right: 10vw;
    }

    .videoLinkReplacer
    {
        display: none;
    }

    #aboutMe
    {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 6em;
    }

    .projectImg
    {
        width: 30em;
        height: 16.9em;
        margin: 1em;
        margin-bottom: 0em;
        border: 1em;
        border-style: solid;
        border-color: rgb(114, 91, 109);
    }

    .overlay
    {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        height: 18.9em;
        width: 32em;
        transition: .5s ease-in-out;
        background-color: rgb(88, 78, 95);
        padding: 0;
        border: 0;
        margin: 1em;
        border-radius: 1em;
    }
}

@media only screen and (min-width:2000px)
{
    #stuffWrapper
    {
        width: 2000px;
    }

    #bulletpoints
    {
        width: 580px;
    }

    #bulletpoints li, #bulletpoints h2
    {
        margin-left: 250px;
    }

    .cvWrapper
    {
        width: 1000px;
        margin-right: 250px;
        margin-left: 100px;
    }

    #thanks
    {
        padding: 2em;
        margin-left: 250px;
        margin-right: 250px;
    }

    p
    {
        margin-left: 200px;
        margin-right: 200px;
    }
}