html, body {
    margin: 0px;
    padding: 0px;
    height: auto;
}

#PageWrapper {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    border-left: 20px solid #1f1f1f;
}

#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;
}


#GraffitiContainer {
    height: auto;
    width: 20%;
}

#GraffitiContainer img {
    height: auto;
    margin-left: 50px;
    position: absolute;
    margin-top: 50px;
    max-height: 80vh;
}

#PicBox {
    width: 30%;
}

#Content {
    width: 50%;
    overflow: scroll;
}

#Content h1 {
    display: flex;
    justify-content: center;
    margin-top: 20%;
}

#Boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

#Boxes input {
    width: 500px;
    background-color: #d4d4d4;
    border-width: 1px;
    border-color: #731010;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 40px;
    margin: 10px;
    font-size: large;
}

#Boxes ::placeholder {
    color: black;
}

#Boxes textarea {
    width: 500px;
    height: 200px;
    background-color: #d4d4d4;
    border-width: 1px;
    border-color: #731010;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 40px;
    font-size: large;
    margin-top: 10px;
}

#Button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

#Button input {
    display: flex;
    justify-content: center;
    width: 80px;
    height: 40px;
    background-color: #731010;
    border: none;
    color: #d4d4d4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
}

#Button :hover {
    background-color: #5c0b0b; 
    cursor: pointer;
    font-style: italic;
}



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) {

    #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;
    }

    #PageWrapper {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
        border-left: none;
    }

    #GraffitiContainer {
        display: none;
    }
    
    #GraffitiContainer img {
        display: none;
    }

    #PicBox {
        display: none;
    }

    #Content {
        width: 100%;
        margin-left: 20px;
        overflow: scroll;
    }

    #ContentBox {
        display: flex;
        flex-direction: row;
        width: calc(100vw - 20px);
    }

    #Content h1 {
        margin-top: 25vh;
        display: flex;
        justify-content: center;
    }

    #Boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }
    
    #Boxes input {
        width: 450px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 40px;
        margin-top: 10px;
        font-size: large;
    }
    
    #Boxes ::placeholder {
        color: black;
    }
    
    #Boxes textarea {
        width: 450px;
        height: 200px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 40px;
        font-size: large;
        margin-top: 10px;
    }
    
    #Button {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    
    #Button input {
        display: flex;
        justify-content: center;
        width: 80px;
        height: 40px;
        background-color: #731010;
        border: none;
        color: #d4d4d4;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: large;
    }
    
    #Button :hover {
        background-color: #5c0b0b; 
        cursor: pointer;
        font-style: italic;
    }
}

@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;
    }

    #PageWrapper {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
    }

    #GraffitiContainer {
        display: none;
    }
    
    #GraffitiContainer img {
        display: none;
    }

    #PicBox {
        display: none;
    }

    #Content {
        width: 100%;
        overflow: scroll;
    }

    #ContentBox {
        display: flex;
        flex-direction: row;
        width: calc(100vw - 20px);
    }

    #Content h1 {
        margin-top: 25vh;
        display: flex;
        justify-content: center;
    }

    #Boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }
    
    #Boxes input {
        width: 600px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 40px;
        margin-top: 10px;
        font-size: x-large;
    }
    
    #Boxes ::placeholder {
        color: black;
    }
    
    #Boxes textarea {
        width: 600px;
        height: 200px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 40px;
        font-size: x-large;
        margin-top: 10px;
    }
    
    #Button {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    
    #Button input {
        display: flex;
        justify-content: center;
        width: 100px;
        height: 60px;
        background-color: #731010;
        border: none;
        color: #d4d4d4;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: large;
    }
    
    #Button :hover {
        background-color: #5c0b0b; 
        cursor: pointer;
        font-style: italic;
    }

    h1 {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 30px;
        font-weight: 600;
        font-size: 60px;
    }

    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;
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1300px) {
    
    #PageWrapper {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
    }

    #GraffitiContainer {
        height: auto;
        width: 20%;
    }
    
    #GraffitiContainer img {
        height: auto;
        margin-left: 50px;
        position: absolute;
        margin-top: 20px;
        max-height: 80vh;
    }
    
    #PicBox {
        width: 30%;
    }
    
    #Content {
        width: 50%;
        overflow: scroll;
    }

    #ContentBox {
        display: flex;
        flex-direction: row;
        width: calc(100vw - 20px);
    }

    #Content h1 {
        margin-top: 10vh;
        display: flex;
        justify-content: center;
    }

    #Boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    
    #Boxes input {
        width: 450px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 30px;
        margin-top: 10px;
        font-size: large;
    }
    
    #Boxes ::placeholder {
        color: black;
    }
    
    #Boxes textarea {
        width: 450px;
        height: 150px;
        background-color: #d4d4d4;
        border-width: 1px;
        border-color: #731010;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 40px;
        font-size: large;
        margin-top: 10px;
    }
    
    #Button {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    
    #Button input {
        display: flex;
        justify-content: center;
        width: 80px;
        height: 40px;
        background-color: #731010;
        border: none;
        color: #d4d4d4;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: large;
    }
    
    #Button :hover {
        background-color: #5c0b0b; 
        cursor: pointer;
        font-style: italic;
    }
}
