#foot {
    text-align: center;
    font-family: monospace;
}

body{
    background-color: #EFEEEB;
}

/*Drop Arrow not implemented into any code right now*/
.dropArrow {
    display: inline-block;
    transform: rotate(180deg);
}


.gridTwo{
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
    padding: 15px;
    justify-items:center;
}

.gridBoxThrees {
  display: grid;
  grid-template-columns: auto auto auto;
  margin: 15px;
  gap: 15px;
  padding: 5px;
  justify-items: center;
}

.gridBoxFours {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-items: center;
  margin: 30px;
  column-gap: 5px;
}

@media screen and (max-width:1200px){
    .gridBoxFours {
        grid-template-columns: auto auto auto;
    }
    .gridBoxThrees {
        grid-template-columns: auto auto;
        max-width: 400px;
    }
}

@media screen and (max-width:900px){
    .wrapper {
        width:40%;
    }
    .gridTwo {
        grid-template-columns: auto;
        max-width: 400px;
    }
    .gridBoxThrees {
        grid-template-columns: auto;
        max-width: 400px;
    }
    .gridBoxFours {
        grid-template-columns: auto;
    }
}


.wrapper{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    gap: 10px;
    margin-bottom: 10px;
}
.image{
    width:max-content;
    position: relative;
}

.content{
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    position:absolute;
    background:rgba(255, 255, 255, 0.8);
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: 0.3s;
    font-size: larger;
}
.content:hover{
    opacity:0;
}
.content p{
    font-family: monospace;
    color:black;
}

/*Title Bar Art Banner thing classes*/

#titleBG{
    width: 100%;
    height: 100%;
    top:0;
    position:absolute;
    display:flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #212D40;
    font-size: min(max(10vw, 40px),60px);
    font-weight:bold;
    padding: 50px;
    -webkit-text-stroke: 2px white;
    line-height: 110%;
}

@media screen and (min-width:1000px){
    #titleBG {
        font-size: 80px;
    }
}

#bodyBG {
    max-width:1300px;
    margin:auto;
    background-color: white;
    border-style: none none solid none;
    border-color:#232323;
    border-width: thick;
}


/* Navigation Bar style */
#navBar{
    text-align: right;
    grid-row: 1;
    background-color: #EFEEEB;
    border-style: none none solid none;
    border-color:#232323;
    border-width: thick;
    font-family:'Gill Sans';
    max-width: 1300px;
}

.buttonNav{
    background-color: #EFEEEB;
    border: none;
    color: #11151C;
    padding: 15px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.2s;
    cursor: pointer;
    width:130px;
}

.buttonNav:hover{
    background-color: #D66853;
    color:#EFEEEB;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content {
    border:none;
    display: none;
    position:absolute;
    z-index:1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/*You're on this page, button will not react*/
.buttonMute {
    border: none;
    color: #D66853;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.2s;
    cursor: pointer;
    width:130px;
    border-style: none none solid none;
    border-width: thick;
    border-color: #7D4E57;
    background-color: #EFEEEB;
}


.outlined {
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate (-50%, -50%);
}

.projectCard{
    margin:auto;
    border-color:#3b3b3b;
    border-style: solid;
    border-width: 3px;
    max-width: 1000px;
    width: 80vw;
    min-height: 300px;
    text-decoration: none;
}
.projectCard:hover{
    box-shadow: 0px 5px 3px rgba(0 0 0/0.2);
}



/*Hyperlink to different parts on same page Settings*/
.section {
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    text-align:center;
    padding-top:80px;
}
.sectionNav{
    position:left;
    width:30%;
    background-color:#333;
    display:flex;
    justify-content: center;
    padding:10px 0;
    z-index:100;
}
.sectionButton{
    color:#ffffff;
    background-color: #38cc77;
    height:40px;
    width:90px;
    padding:2px;
    border:2px solid black;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    text-align:center;
}



/*Tab settings*/
.tab{
    width:100%;
    display:flex;
    justify-content: center;
}
.tab button{
    float:left;
    border:none;
    outline:none;
    cursor:pointer;
    padding:10px 25px;
    transition:0.2s;
}
.tab button:hover{
    background-color:#ddd;
}
.tab button.active{
    background-color:#886969;
    color: #fff;
}
.tabContent{
    display:none;
    padding:6px 12px;
}
/*For the extras if needed*/
.tabContent2{
    display:none;
    padding:6px 12px;
}


video {
    max-width: 700px;
    width: 80vw;
    height: auto;
}