/* Base */
body {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: white;
    font-size: 30px;
    text-shadow: 2px 2px 0px rgb(36, 34, 52);
}


p {
    color: white;
    font-size: 20px;
    text-shadow: 2px 2px 0px rgb(36, 34, 52);
}

a {
    color: white;
}

a:hover{
    filter: brightness(70%);
}

* {
    box-sizing: border-box;
}

iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 40vw;
    max-width: 1000px;
}

/* Email field */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    width: 50vw;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #58bf35;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #58bf35;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    input[type=submit]:hover {
        background-color: #23674e;

    }

/* Body */

#properBody {
    background-image: url("../IMG/Background_Main.png");
    background-position: center;
    background-size: 180px;
    margin: 0px;
    min-height: 100vh;
    width: 100vw;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
}


/* Header & Navigation */
#Header {
    display: flex;
    flex-direction: column;
    max-width: 1920px;
}

#headerImg {
    width: 650px;
}

#navButtons {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.navButton {
    font-size: 30px;
}


/* Containers */
.FullContainer {
    position: relative;
    display: inline-block;
}

.ContainerPadding {
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
}

.ContainerPaddingPC {
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
}

.ContainerPaddingMinor {
    padding-bottom: 10px;
}

.textPadding {
    padding: 15px;
}

.content{

}

.headshot{
    width: 38vw;
    max-width: 400px;
}

.contentBox {
    width: auto;
    border: 20px solid transparent;
    border-image: url(../IMG/DefaultBorder.png) 50 stretch;
    background-color: rgb(38, 82, 59);
}

.Hand_Left {
    background-image: url("../IMG/Hand_Presenting_L.png");
    background-size: 200px;
    height: 150px;
    width: 200px;
    background-repeat: no-repeat;
    background-position: left;
}

.bottomleft {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 18px;
}

.Hand_Right {
    background-image: url("../IMG/Hand_Presenting_R.png");
    background-size: 200px;
    height: 150px;
    width: 200px;
    background-repeat: no-repeat;
    background-position: right;
}

.gamesContainer {
    width: 35vw;
    max-height: 400px;
    max-width: 500px;
    object-fit: contain
}

/* ContainerModification */

.Centerer {
    display: flex;
    justify-content: center;
}

.bottomright {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 18px;
}

.block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blockTop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.verticalBlock {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.horizontalBlock {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.displayRow {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;

}

.Arrow_Right {
    background-image: url("../IMG/ArrowRight.png");
    background-size: 100px;
    height: 75px;
    width: 100px;
    background-repeat: no-repeat;
    background-position: left;

    position: absolute;
    left: -120px;
    bottom: 50%;
    font-size: 18px;


}

.padding5{
    padding: 5px;
}

.gap10 {
    gap: 20px;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}

.gap100PC {
    gap: 100px;
}

.showMobile {
    display: none;
}

#CampusImg{
    width: 80vw;
    max-width: 800px;
}

.justifyRight {
    display: flex;
    align-items: flex-start;
}

.topLink {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
}

label {
    font-size: 20px;
}

.viewItem{
    color: #FFD541;
}

/* Mobile changes */
@media only screen and (max-width: 850px) {
    
    .headshot{
        width: 80vw;
        max-width: 500px;
    }
    
    .gamesContainer {
        width: 80vw;
        max-width: 500px;
    }
    
    #headerImg {
        width: 100vw;
    }

    .navButton {
        font-size: 20px;
    }

    .block {
        display: flex;
        flex-direction: column;
    }

    .blockTop {
        display: flex;
        flex-direction: column;
    }

    iframe {
        aspect-ratio: 16 / 9;
        height: auto;
        width: 80vw;
    }

    .hideMobile {
        display: none;
    }

    .showMobile {
        display: block;
    }

    .ContainerPadding {
        padding-bottom: 100px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .ContainerPaddingPC {
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .gap100PC {
        gap: 0px;
        
    }

    .justifyRight {
        display: flex;
        align-items: center;
    }

    .container {
        border-radius: 5px;
        background-color: #f2f2f2;
        padding: 20px;
        width: 90vw;
    }

    .verticalMobile {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
}

/* Widescreen changes */
@media screen and (min-width: 1921px) {

    #properBody {
        background-image: url("../IMG/Background_Main.png");
        background-position: center;
        background-size: 180px;
        margin: 0px;
        min-height: 100vh;
        width: 100vw;
        max-width: 1920px;
        display: flex;
        flex-direction: column;
        outline: 10px groove #59c134;
    }

    .block {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 50px;
    }

    .blockTop {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    #headerImg {
        width: 1000px;
    }

    #navButtons {
        gap: 40px;
    }
    
    .navButton {
        font-size: 50px;
    }

    h1 {
        font-size: 45px;
    }

    p {
        font-size: 35px;
    }

    body {
        background-image: url("../IMG/Background_Overflow.png");
        background-position: center;
        background-size: 180px;
    }

    label {
        font-size: 30px;
    }

    .gamesContainer {
        width: 45vw;
        max-width: 700px;
    }
}
