html, body {
    margin: 0px;
    padding: 0px;
    height: auto;
}

#PageWrapper {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    border-left: 20px solid #1f1f1f;
    /* min-height: 100vh; */
}

#Navigation {
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row-reverse;
    padding-right: 50px;
    height: 50px;
    width: auto;
    font-size: larger;
}

.NavSpace {
    padding-left: 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

#Underline {
    text-underline-offset: 5px;
    text-decoration: underline;
    text-decoration-color: #000000;
}

#ContentBox {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 100px);
    width: auto;
    overflow: scroll;
}







#GraffitiContainer {
    height: auto;
    /* max-height: fit-content; */
    overflow: none;
}

#GraffitiContainer img {
    height: auto;
    margin-left: 50px;
    position: absolute;
    margin-top: 40px;
    max-height: 80vh;
}

#NameBox {
    width: 100px;
    font-size: larger;
    position: absolute;
    top: -70px;
    left: -40px;
}

#GrayBox {
    position: relative;
    width: 60%;
    background-color: #d4d4d4; 
    margin: 200px auto 0px 35%;
    height: fit-content;
    min-height: calc(100vh - 350px);
}

#Content {
    margin-left: 100px;
    margin-right: 100px;
}

#DarkGray {
    background-color: #707070;
    width: auto;
    height: 40px;
}




#Content h2 {
    display: flex;
    justify-content: center;
}

#DarkGray h3 {
    display: flex;
    justify-content: center;
    font-weight: 600;
    line-height: 35px;
}

#PicBox {
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: fit-content;
    width: auto;
}

#PicBox img {
    margin: 20px;
    height: 150px;
    width: auto;
}


p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: larger;
}

h1 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 30px;
    font-weight: 600;
}

h2 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 10px;
}

h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    line-height: 10px;
}


#Footer {
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #731010;
    width: auto;
    height: 50px; 
}

#Logos {
    display: flex;
    justify-self: center;
    align-self: center;
    height: 24px;
    width: 24px;
    margin-right: 5px;
    margin-left: 5px;
}

a {
    color: #000000;
    margin-top: 12px;
    padding: 0px;
    text-decoration: none;
}

a:hover { 
    color:#731010;
    font-style: italic;
}




@media only screen and (min-width: 300px) and (max-width: 850px) {

    #PageWrapper {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
        border-left: none;
    }

    p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: x-large;
    }
    
    h1 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 45px;
        line-height: 30px;
        font-weight: 600;
    }
    
    h2 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        line-height: 10px;
        font-size: xx-large;
    }
    
    h3 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
        line-height: 10px;
    }

    #Navigation {
        color: rgb(0, 0, 0);
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        padding-right: 0px;
        height: 50px;
        width: auto;
        font-size: large;
    }

    #GraffitiContainer {
        display: none;
    }
    
    #GraffitiContainer img {
        display: none;
    }
    
    #NameBox {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: auto;
        font-size: larger;
        position: relative;
        top: 0;
        left: 0;
    }
    
    #GrayBox {
        width: 100%;
        background-color: #d4d4d4; 
        margin: 45px 0px 0px 0px;
        height: auto;
        padding-top: 50px;
        overflow: scroll;
    }
    
    #Content {
        margin-left: 50px;
        margin-right: 50px;
    }
    
    #DarkGray {
        background-color: #707070;
        width: auto;
        height: 40px;
        font-size: larger;
    }
    
    #Content h2 {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    #DarkGray h3 {
        display: flex;
        justify-content: center;
        font-weight: 600;
        line-height: 35px;
    }
    
    #PicBox {
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
        width: auto;
        overflow: clip;
    }
    
    #PicBox img {
        margin: auto;
        padding-top: 10px;
        height: 200px;
        width: 350px;
    }
    
}

@media only screen and (min-width: 851px) and (max-width: 1000px) {

    #Navigation {
        color: rgb(0, 0, 0);
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        padding-right: 0px;
        height: 50px;
        width: auto;
        font-size: xx-large;
    }

    p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: x-large;
    }
    
    h1 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 45px;
        line-height: 30px;
        font-weight: 600;
    }
    
    h2 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        line-height: 10px;
        font-size: xx-large;
    }
    
    h3 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
        line-height: 10px;
    }

    #GraffitiContainer {
        display: none;
    }
    
    #GraffitiContainer img {
        display: none;
    }
    
    #NameBox {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: auto;
        font-size: larger;
        position: relative;
        top: 0;
        left: 0;
    }
    
    #GrayBox {
        width: 100%;
        background-color: #d4d4d4; 
        margin: 45px 0px 0px 0px;
        height: auto;
        padding-top: 50px;
        overflow: scroll;
    }
    
    #Content {
        margin-left: 50px;
        margin-right: 50px;
    }
    
    #DarkGray {
        background-color: #707070;
        width: auto;
        height: 40px;
        font-size: larger;
    }
    
    #Content h2 {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    #DarkGray h3 {
        display: flex;
        justify-content: center;
        font-weight: 600;
        line-height: 35px;
    }
    
    #PicBox {
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
        width: auto;
    }
    
    #PicBox img {
        margin: auto;
        padding-top: 10px;
        height: 350px;
        width: auto;
    }

}

@media only screen and (min-width: 1001px) and (max-width: 1300px) {
    
    p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: larger;
    }
    
    h1 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 30px;
        font-weight: 600;
    }
    
    h2 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        line-height: 10px;
    }
    
    h3 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
        line-height: 10px;
    }

    #ContentBox {
        display: flex;
        flex-direction: row;
        height: fit-content;
        min-height: calc(100vh - 100px);
        width: auto;
        overflow: clip;
    }    
    
    #GraffitiContainer {
        width: 250px;
        height: calc(100vh - 100px);
    }
    
    #GraffitiContainer img {
        height: auto;
        margin-left: 50px;
        position: absolute;
        bottom: 10vh;
        max-height: 80vh;
        max-width: 20vw;
        z-index: 1;
    }
    
    #NameBox {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: auto;
        font-size: larger;
        position: relative;
        top: 0;
        left: 0;
    }
    
    #GrayBox {
        width: 100%;
        background-color: #d4d4d4; 
        margin: 100px 0px 0px 0px;
        height: auto;
        padding-top: 50px;
        overflow: scroll;
    }
    
    #Content {
        margin-left: 100px;
        margin-right: 100px;
    }
    
    #DarkGray {
        background-color: #707070;
        width: auto;
        height: 40px;
    }
    
    #Content h2 {
        display: flex;
        justify-content: center;
        margin-top: 80px;;
    }
    
    #DarkGray h3 {
        display: flex;
        justify-content: center;
        font-weight: 600;
        line-height: 35px;
    }
    
    #PicBox {
        display: flex;
        justify-content: center;
        flex-direction: row;
        height: fit-content;
        width: auto;
    }
    
    #PicBox img {
        margin: 20px;
        height: 150px;
        width: auto;
    }
}
