body {
    background-color: black;
    overflow: hidden;
}

#container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    font-family: "Poppins", sans-serif;
}

#logo {
    width: 10vw;
    height: 10vw;
    background-image: url("/images/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: fixed;
    top: 2.5vw;
    left: 2.5vw;
    z-index: 1000;
}

#menuBar {
    height: 15vw;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 100;
}

#menuBTN {
    text-transform: uppercase;
    color: white;
    margin: 0;
    margin-right: 5vw;
}

#menuContainer {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    background-color: black;
    z-index: 110;
    position: fixed;
    top: 0;
    left: 100vw;
    transition-duration: 0.5s;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#menuClose {
    width: 10vw;
    height: 10vw;
    position: absolute;
    top: 2.5vw;
    right: 2.5vw;
    background-image: url("/images/closeBTN.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#menuHolder {
    width: 100vw;
    text-align: center;
}

.menuItem {
    color: white;
    font-size: 5vh;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: -200vw;
}

#menuHome {
    transition-duration: 0.5s;
}

#menuAbout {
    transition-duration: 0.6s;
}

#menuProjects {
    transition-duration: 0.7s;
}

#menuContact {
    transition-duration: 0.8s;
}

#homeHolder {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    scroll-snap-align: center;
}

#homeTitle {
    color: white;
    font-size: 5vh;
    font-weight: 100;
    line-height: 1;
    margin: 0;
}

#homeSubTitle {
    color: white;
    font-size: 3vh;
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

#dividerLine {
    width: 70vw;
    border: 0;
    border-bottom: 0.2vh;
    border-color: white;
    border-style: solid;
    padding-left: 5vw;
    padding-right: 5vw;
}

#homePiece {
    color: white;
    font-size: 2vh;
    font-weight: 200;
    margin: 0;
}

#aboutContainer {
    position: absolute;
    top: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    scroll-snap-align: start;
    background-color: black;
    display: flex;
}

#aboutHolder {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: left;
}

#aboutTitle {
    color: white;
    font-size: 5vh;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

#aboutPara {
    color: white;
    font-size: 1.5vh;
    font-weight: 200;
}

#projectsContainer {
    position: absolute;
    top: calc(var(--vh, 1vh) * 200);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    scroll-snap-align: start;
    background-color: black;
    display: flex;
}

#projectsScroll {
    width: 100vw;
    height: calc((var(--vh, 1vh) * 100) - 15vw);
    margin-top: 15vw;
    width: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    display: flex;
}

#projectsContainer svg {
    position: absolute;
    bottom: 1vw;
    left: 10vw;
    right: 10vw;
}

.project {
    min-width: 100vw;
    height: calc((var(--vh, 1vh) * 100) - 15vw);
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.project h1{
    font-size: 4vh;
    color: white;
    align-self: flex-end;
    
}



#projectView {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

#projectPage {
    position: relative;
    margin-top: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    background-color: black;
    pointer-events: all;
    transition-duration: 1s;
}

#projectClose {
    width: 10vw;
    height: 10vw;
    position: absolute;
    top: 2.5vw;
    right: 2.5vw;
    background-image: url("/images/closeBTN.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#projectHolder {
    position: absolute;
    width: 90vw;
    height: calc((var(--vh, 1vh) * 100) - 15vw);
    top: 15vw;
    left: 5vw;
    overflow-y: scroll;
}

#projectTitle {
    font-size: 5vh;
    color: white;
    margin: 0;
}

#projectMainImg {
    max-width: 100%;
    height: auto;
    max-height: calc(var(--vh, 1vh) * 80);
}

#projectMainVid {
    max-width: 100%;
    height: auto;
    max-height: calc(var(--vh, 1vh) * 80);
}

#projectAbout {
    font-size: 1vh;
    color: white;
    max-width: 75vw;
    overflow-wrap: break-word;
}

.projectGalleryItem {
    max-width: 90vw;
    height: auto;
    width: auto;
}

#contactContainer {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    top: calc(var(--vh, 1vh) * 300);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    scroll-snap-align: start;
}

#contactHolder {
    color: #fff;
    text-align: left;
}

#contactHolder h1 {
    font-size: 5vh;
    margin-bottom: 0;
}

#contactHolder h2 {
    font-size: 2vh;
    margin-top: 0;
    cursor: pointer;
}
