* {
    margin: 0;
    font-family: "quicksand", sans-serif;
}

body {
    background-color: #EBCFB2;
    width: 100vw;
    overflow-x: hidden;
}

body::-webkit-scrollbar{
    display: none;
}

.head {
    font-family: "decoy", sans-serif;
    font-size: 10vw
}
.text {
    font-size: 3vw;
}






.navButtonClass {
    width: 5vh;
    height: 5vh;
    border: solid black 0.4vw;
    border-radius: 100%;
    padding: 2vh;

}

.navButtonClass > a {
    width: 100%;
    height: 100%;
}
.navButtonClass > a > img{
    width: 100%;
    height: 100%;
}

#navigation {
    position: fixed;
    right: 2vh;
    display: grid;
    place-items: center;
    width: 10vh;
    height: 10vh;
    transition: 0ms;
    z-index: 100;
    top: 0;
}

#navigation:hover {
    height: 30vh;
    width: 40vh;
    right: -13.1vh;
    top: -10vh;
}

#navButton {
    position: fixed;
    z-index: 10;
    background-color: #172121;
    width: 5vh;
    height: 5vh;
}

#navButton > img {
    width: 100%;
    height: 100%;
}

#nav1 {
    position: fixed;
    z-index: 9;
    transition: transform 800ms;
    background-color: #172121;
}
#nav1 > a {
    position: relative;
    left: 15%;
}
#nav1 > a > img {
    width: 70%;
}

#navigation:hover > #nav1 {
    transform: rotate(-360deg) translate(-12vh) rotate(360deg);
}

#nav2 {
    position: fixed;
    z-index: 8;
    transition: transform 800ms;
    background-color: #172121;
}

#navigation:hover > #nav2 {
    transform: rotate(-360deg) translate(-9vh, 10vh) rotate(360deg);
}

#nav3 {
    position: fixed;
    z-index: 7;
    transition: transform 800ms;
    background-color: #172121;
}

#navigation:hover > #nav3 {
    transform: rotate(-360deg) translate(2vh, 12vh) rotate(360deg);
}









main {
    display: grid;
    grid-template-rows: 10vh 5vh 20vh 10vh 40vh 10vh 84vw 10vh 20vh 10vh 45vh 10vh 20vh 10vh 65vh 10vh 20vh;
    grid-template-columns: 5vw 3vw 84vw 3vw 5vw;
    grid-template-areas: 
    
    "leftBar topBar topBar topBar rightBar"
    "leftBar . . . rightBar"
    "leftBar . head . rightBar"
    "leftBar . . . rightBar"
    "leftBar . intro . rightBar"
    "leftBar . . . rightBar"
    "leftBar . cards . rightBar"
    "leftBar . . . rightBar"
    "leftBar . h2 . rightBar"
    "leftBar . . . rightBar"
    "leftBar . part2 . rightBar"
    "leftBar . . . rightBar"
    "leftBar . h3 . rightBar"
    "leftBar . . . rightBar"
    "leftBar . part3 . rightBar"
    "leftBar . . . rightBar"
    "leftBar foot foot foot rightBar"

    ;


}


#head3Box {
    grid-area: h3;
    display: grid;
    place-items: center;
}

#part3 {
    grid-area: part3;
    font-size: 3vw;
    padding-left: 15vw;
    padding-right: 15vw;
}

#part3 > ul {
    list-style: none;
}
#part3 > ul > li {
    padding-bottom: 4vh;
}





#head2Box {
    grid-area: h2;
    display: grid;
    place-items: center;
}

#part2 {
    grid-area: part2;
    font-size: 3vw;
    padding-left: 15vw;
    padding-right: 15vw;
}





#topBar {
    grid-area: topBar;
    background-color: white;
}

#footer {
    grid-area: foot;
    height: 100%;
    width: 100%;
    background-color: #A1674A;
}

footer > ul {
    padding-top: 4vh;
    list-style: none;
    color: white;
    font-size: 2.3vh;
}
footer > ul > li {
    color: white;
    padding-top: 0.5vh;
    font-size: 2vh;
}



#headerBox {
    grid-area: head;
    display: grid;
    place-items: center;
}

#intro {
    grid-area: intro;
    padding-left: 15vw;
    padding-right: 15vw;
}




#sideBars {
    display: grid;
}
.sideBars {
    width: 100%;
    height: 100%;
    background-color: #172121;
}
#rightBar {
    grid-area: rightBar;
}

#leftBar {
    grid-area: leftBar;
}







#bigContainer {
    width: 100%;
    height: 100%;
    top: 10vh;
    grid-area: cards;
    display: grid;
    place-items: center;
}

#bigContainer > div > p {
    color: white;
    width: 50%;
    position: relative;
    left: 5%;
    bottom: 5vw;
    font-size: 5vw;
}

#bigContainer > div > h3 {
    color: white;
    width: 50%;
    position: relative;
    left: 5%;
    bottom: 8vw;
    font-size: 8vw;
}

#bigContainer > div > img {
    width: 100%;
}

#container {
    background-color: rgba(240, 217, 167, .0);
    display: grid;
    place-items: center;
    position: relative;
    width: 60%;
}

/* #containerBGIMG {
    width: 100%;
    
} */


.card {
    width: 60%;
    aspect-ratio: 10/13;
    background-color: #4281A4;
    display: flex;

    position: absolute;
    transition: transform 800ms cubic-bezier(.05,.43,.25,.95);
    border-radius: 5px;

}

.smallCard {
    width: 42%;
    aspect-ratio: 10/13;
    background-color: #85C7DE;
    display: flex;

    position: absolute;
    transition: transform 800ms cubic-bezier(1,.02,0,1);
    border-radius: 5px;

}




#container:hover > #card1 {
    transform: translate(-75%, 70%);

}

#container:hover > #card2 {
    transform: translate(-21%, -50%);

}

#container:hover > #card3 {
    transform: translate(100%, 10%);

}

#container:hover > #card4 {
    transform: translate(110%, -130%);

}

#container:hover > #card5 {
    transform: translate(60%, 170%);

}

#container:hover > #card6 {
    transform: translate(-180%, -70%);

}

#card4 {
    transform: translate(40%, -40%);

}

#card5 {
    transform: translate(20%, 40%);

}

#card6 {
    transform: translate(-50%, -10%);

}

.cardPicture {
    position: relative;
}

#cardPic1 {
    top: 10%;
    width: 100%;
    height: 80%;
}

@media only screen and (min-width: 600px) {

    #container {
        width: 48%;
    }

}

@media only screen and (min-width: 700px){

    #container {
        width: 45%;
    }
}
@media only screen and (min-width: 900px){

    #container {
        width: 35%;
    }
    .head {
        font-family: "decoy", sans-serif;
        font-size: 7vw
    }
    .text {
        font-size: 2.5vw;
    }
}
@media only screen and (min-width: 1080px){

    #container {
        width: 30%;
    }
    .head {
        font-family: "decoy", sans-serif;
        font-size: 5vw
    }
    .text {
        font-size: 2vw;
    }
}
@media only screen and (min-width: 1250px){

    #container {
        width: 25%;
    }
}