#mainSite {
    width: calc(100vw - env(horizontal-scroll-bar-width));
    height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* Header */
header{
    display: flex;
    flex-direction: column;
    height: 80px;
}

#logoIcon{
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    width: 40px;
    height: 40px;
}

#header{
    width: 100%;
    height: 40px;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    background-color: #0c3850;
}

#header h1 {
    justify-self: center;
    align-self: center;
    color: #25affc;
    padding-left: 5px;
}

#menuBtnCont {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #134c6b;
}

#menuBtn {
    width: 40px;
    height: 40px;
    background-image: url("../img/menu.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}

#menu {
    width: 100%;
    height: 0px;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 50;
    background-color: #134c6b;
}

#menuCont {
    height: 0px;
    transition: all 0.5s ease-in-out;
}

#menuItems {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    position: absolute;
}

nav a {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #25affc;
}

@media (min-width: 769px) {
    #menuBtnCont {
        display: none;
    }

    #menu {
        height: 40px !important;
        visibility: visible !important;
    }

    #menuItems {
        flex-direction: row;
        opacity: 1 !important;
    }
}


/* About Page */
#pageContent {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

article {
    align-self: center;
    width: 95vw;
    background-color: #0c3850;
    border: 2px solid #25affc;
    border-radius: 5px; 
    display: flex; 
    flex-direction: column;
    margin-top: 10px;
    align-items: center;
    padding: 5px;
    overflow-y: auto;
}

article::-webkit-scrollbar {
    background-color: #0c3850;
}
article::-webkit-scrollbar-thumb {
    background-color: #25affc;
    border-radius: 2px;
}

article h2 {
    font-size: 1.8em;
    font-weight: bold;
    color:#25affc;
}

article p {
    font-size: 1em;
    color: #7be0ff;
    overflow-wrap: break-word;
}

@media (min-width: 769px) {
    #pageContent {
        min-height: calc(100vh - 80px) !important;
        height: auto !important;
    }
    #homePage {
        flex-direction: row !important;
        background-color: #1b6891 !important;
    }
    article {
        width: 70vw !important;
        height: calc(90vh - 80px) !important;
    }
    article h2 {
        font-size: 2.5em !important;
    }
    article p {
        font-size: 1.2em !important;
    }
    #homeCont1,
    #homeCont2 {
        width: 50vw !important;
        height: 100% !important;
        min-height: calc(100vh - 80px) !important;
    }
    #pfp {
        padding-bottom: 350px !important;
        width: 350px !important;
    }
}

@media (min-width: 1000px) {
    article h3 {
        font-size: 3em;
    }
    article p {
        font-size: 1.5em;
    }
    #pfp {
        padding-bottom: 500px !important;
        width: 500px !important;
    }
    #contactInfo h3 {
        font-size: 4em !important;
    }
    #contactInfo a {
        font-size: 2em !important;
    }
}

@media (min-width: 2560px) {
    aside {
        width: 600px !important;
    }
}

/* Home Page */

#homePage {
    display: flex;
    flex-direction: column;
}

#homeCont1,
#homeCont2 {
    display: flex;
    flex-direction: column;
    background-color: #1b6891;
    justify-self: flex-end;
    width: 100vw;
}

#homeCont1 h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #25affc;
    align-self: center;
    padding-top: 10px;
}

#pfp {
    width: 80%;
    padding-bottom: 80%;
    border: 2px solid #25affc;
    border-radius: 50%;
    background-image: url("../img/pfp.png");
    background-repeat: no-repeat;
    background-size: 110%;
    background-position: center;
    justify-self: center;
    align-self: center;
    margin: 10px;
}

#contactInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contactInfo h3 {
    font-size: 2.5em;
    color: #25affc;
    font-weight: bold;
}

#contactInfo a {
    color: #7be0ff;
    font-size: 1.25em;
    cursor: pointer;
}

#downloadResume {
    background-color: #0c3850;
    color: #7be0ff;
    font-size: 20px;
    cursor: pointer;
    width: 80%;
    border: 2px solid #25affc;
    border-radius: 10px;
    align-self: center;
    margin: 10px;
    text-align: center;
    padding: 10px 0px;
}

#aboutMeBtn {
    background-color: #0c3850;
    color: #7be0ff;
    font-size: 20px;
    cursor: pointer;
    width: 80%;
    border: 2px solid #25affc;
    border-radius: 10px;
    align-self: center;
    margin: 10px;
    text-align: center;
    padding: 10px 0px;
}

#featuredProj {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

#featuredProj h3 {
    font-size: 2.5em;
    color: #25affc;
    font-weight: bold;
    padding-bottom: 5px;
}

#featuredProj a {
    width: 80%;
    border: 2px solid #25affc;
    border-radius: 10px;
    background-color: #0c3850;
    text-align: center;
    cursor: pointer;
    padding: 0px 5px 5px 5px;
}

#featuredProj h4 {
    font-size: 2em;
    color: #7be0ff;
    padding: 5px 0px;
}

#ftProjImg {
    width: 100%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Gallery */
#gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
}

#portraitCont,
#landscapeCont,
#homeCont,
#aerialCont {
    background-color: #0c3850;
    border: 2px solid #25affc;
    border-radius: 10px;
    text-align: center;
    width: 95vw;
    margin-top: 10px;
}

#portraitCont h2,
#landscapeCont h2,
#homeCont h2,
#aerialCont h2 {
    color: #25affc;
    font-size: 3em;
    font-weight: bold;
}

#portraitWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.portImg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 53.3vw;
    width: 30vw;
    margin: 2px;
    cursor: pointer;
}

.portImg:hover {
    opacity: 0.8;
}

.landImg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 25.3125vw;
    width: 45vw;
    cursor: pointer;
}

.landImg:hover {
    opacity: 0.8;
}

@media (min-width: 769px) {
    .portImg {
        height: 26.67vw !important;
        width: 15vw !important;
    }
    .landImg {
        height: 16.875vw;
        width: 30vw;
    }
}

#imgCont {
    position: fixed;
    background-color: rgba(0, 0, 0, 0);
    height: 100vh;
    width: 100vw;
    z-index: 100;
    top: 0;
    left: 0;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: none;
    transition: all 0.5s ease-in-out;
}

#prevImg,
#nextImg {
    font-size: min(3vw, 1em);
    color: #25affc;
    background-color: #000000;
    cursor: pointer;
    opacity: 0;
    padding: 5px;
    border-radius: 10%;
    position: fixed;
    top: 50vh;
    z-index: 150;
    display: none;
    transition: all 0.2s ease-in-out;
}

#prevImg:hover,
#nextImg:hover {
    opacity: 0.6 !important;
}

#prevImg {
    margin-right: 5px;
    right: 85vw;
}

#nextImg {
    margin-left: 5px;
    left: 85vw;
}

#displayImg {
    height: 70vh;
    width: 70vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 150;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 769px) {
    #prevImg {
        right: 90vw !important;
        font-size: 1.35em !important;
    }
    #nextImg {
        left: 90vw !important;
        font-size: 1.35em !important;
    }
    #displayImg {
        height: 80vh !important;
        width: 80vw !important;
    }
}

/* Web Dev Projects */
#webProjects {
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webDevProj {
    width: 95vw;
    background-color: #0c3850;
    border: 2px solid #25affc;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    padding: 5px;
}

.webDevProj h2 {
    font-size: 3em;
    color:#25affc;
    font-weight: bold;
}

.webDevProj p {
    font-size: 1em;
    color: #7be0ff;
    text-align: center;
}

.webDevProj h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #25affc;
}

.webDevProj img {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

@media (min-width: 769px) {
    #webProjects {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .webDevProj {
        width: 47vw !important;
    }
}