html {
  font-size: 62.5%;
  /* scroll-snap-type: y mandatory; */
}


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

body {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f2f6f9;

}

/* -------------------------------------------------------------------------------------------navSticky---------------------------------------------------------------------------- */

.background {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #f2f6f9;
  opacity: 1;
  background-image: linear-gradient(30deg, #d3d3d3 12%, transparent 12.5%, transparent 87%, #d3d3d3 87.5%, #d3d3d3), linear-gradient(150deg, #d3d3d3 12%, transparent 12.5%, transparent 87%, #d3d3d3 87.5%, #d3d3d3), linear-gradient(30deg, #d3d3d3 12%, transparent 12.5%, transparent 87%, #d3d3d3 87.5%, #d3d3d3), linear-gradient(150deg, #d3d3d3 12%, transparent 12.5%, transparent 87%, #d3d3d3 87.5%, #d3d3d3), linear-gradient(60deg, #d3d3d377 25%, transparent 25.5%, transparent 75%, #d3d3d377 75%, #d3d3d377), linear-gradient(60deg, #d3d3d377 25%, transparent 25.5%, transparent 75%, #d3d3d377 75%, #d3d3d377);
  background-size: 36px 63px;
  background-position: 0 0, 0 0, 18px 32px, 18px 32px, 0 0, 18px 32px;
  z-index: -10;
}

.navBar {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 10vh;
  background-color: #000000;
  color: #f2f6f9;
  font-size: 5rem;
  text-align: center;
  z-index: 999;
}

.navBarGrid {
  position: relative;


  font-size: 2rem;
  left: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-columns: 1fr;
  gap: 0% 0%;

  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  grid-template-areas:
    "barProjectOne barProjectTwo barProjectThree barProjectFour barProjectFive";
  width: 70%;
  height: 100%;
}

.barProjectOne {
  grid-area: barProjectOne;

  height: 100%;
  width: 100%;
}

.barProjectTwo {
  grid-area: barProjectTwo;

  height: 100%;
  width: 100%;
}

.barProjectThree {
  grid-area: barProjectThree;

  height: 100%;
  width: 100%;
}

.barProjectFour {
  grid-area: barProjectFour;

  height: 100%;
  width: 100%;
}

.barProjectFive {
  grid-area: barProjectFive;

  height: 100%;
  width: 100%;
}


#barText {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  color: #f2f6f9;
  font-family: "major-mono-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: all 0.5s;
}

#barProject {
  background-color: none;
  transition: all 0.5s;
}

#barText:hover {
  text-decoration: line-through;
}

#barProject:hover {
  background-color: #f2f6f9;

}

#barProject:hover #barText {
  color: #000000;
}

/* -------------------------------------------------------------------------------------------HeroHeader---------------------------------------------------------------------------- */

.hero {

  width: 100vw;
  height: 90vh;

  margin-bottom: 1%;

  text-align: right;
  bottom: 0;
  color: #f2f6f9;
  filter: grayscale();


  /* background-color: #58575a; */
}

.hero video {
  width: 100%;
  height: 100%;
  position: relative;

  object-fit: cover;
  z-index: 0;
}

.heroText {
  position: absolute;
  width: fit-content;
  bottom: 2vh;
  right: 2vh;
  font-size: 10rem;
  font-family: "major-mono-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 15;
  background-color: #000000;
}

.heroText:hover {
  text-decoration: line-through;
}

.hero:hover {
  filter: none;
}

.heroDPD {

  width: 100vw;
  height: 100vh;

  margin-bottom: 1%;

  text-align: center;
  bottom: 0;
  color: #f2f6f9;
  filter: grayscale();


  /* background-color: #58575a; */
}

.heroDPD video {
  width: 100%;
  height: 100%;
  position: relative;

  object-fit: cover;
  z-index: 0;
}

.heroDPDText {
  position: relative;
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-family: "major-mono-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 15;
}

.heroDPDText:hover {
  text-decoration: line-through;
}

.heroDPD:hover {
  filter: none;
}

/* -------------------------------------------------------------------------------------------projectGrid---------------------------------------------------------------------------- */
.projectContainer {

  width: 100vw;
  height: 300vh;


  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 1vh 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "projectOne"
    "projectTwo"
    "projectThree"
    "projectFour"
    "projectFive";
}


.projectOne {
  grid-area: projectOne;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 1fr;
  overflow: hidden;


  color: #f2f6f9;
  text-decoration: none;
  background-image: url(../IMG/Watch_v2.png);
  background-size: cover;

}




.projectTwo {
  grid-area: projectTwo;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 1fr;
  overflow: hidden;

  background-color: #58575a;
  color: #f2f6f9;
  text-decoration: none;
  background-image: url(../IMG/parrowHomePage.png);
  background-size: cover;

}

.projectThree {
  grid-area: projectThree;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 1fr;
  overflow: hidden;

  background-color: #58575a;
  color: #f2f6f9;
  text-decoration: none;
  background-image: url(../IMG/titleSequenceHomePage.png);
  background-size: cover;

}

.projectFour {
  grid-area: projectFour;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 1fr;
  overflow: hidden;

  background-color: #58575a;
  color: #f2f6f9;
  text-decoration: none;
  background-image: url(../IMG/webDesignHomePage.png);
  background-size: cover;
}

.projectFive {
  grid-area: projectFive;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 1fr;
  overflow: hidden;

  background-color: #58575a;
  color: #f2f6f9;
  text-decoration: none;
  background-image: url(../IMG/gameHomePage.png);
  background-size: cover;
}

#project {
  font-family: "major-mono-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 15;
}

.projectText {
  position: relative;
  width: fit-content;
  text-align: right;
  top: 90%;
  left: 1%;
  font-size: 3rem;
  font-family: "major-mono-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 15;
  background-color: #000000;
}


#project:hover {
  text-decoration: line-through;

}

#projectLink {
  text-decoration: none;
  color: #f2f6f9;
}

/* -------------------------------------------------------------------------------------------aboutBox---------------------------------------------------------------------------- */
.homeLinks {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  color: #f2f6f9;
}

.aboutBox {
  position: relative;
  padding-top: 1vh;
  padding-bottom: 1vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0% 5%;
  grid-template-areas:

    "aboutMe socialMedia emailContact";
  width: 90vw;
  height: 50vh;
  left: 50%;
  transform: translateX(-50%);

  font-family: "cofo-sans-mono-variable", sans-serif;
  font-variation-settings: 'wght' 400;
  font-style: normal;
}

.aboutMe {
  grid-area: aboutMe;
  background-color: #000000;
  background-image: none;
  background-size: 100% auto;

  color: #f2f6f9;

  font-size: 5rem;
  text-align: center;
  vertical-align: middle;
}

#aboutMe {
  position: relative;
  /* Make this the parent of the overlay */
  width: 100%;
  height: 100%;
  background-color: #000000
    /* Fallback color */
}

#overlay {
  position: absolute;
  /* Position the overlay on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../IMG/AboutMeImg.png);
  /* Set the image here */
  background-size: 100% auto;
  /* Ensure the background size is maintained */
  background-repeat: no-repeat;
  /* Prevent repeating the image */
  opacity: 0;
  /* Start fully transparent */
  transition: opacity 0.5s ease-in-out;
  /* Transition for opacity */
  pointer-events: none;
  /* Allow clicks to pass through the overlay */
}

/* .aboutMe img{
  width: 100%;
  height: 100%;
  position: relative;
  
  object-fit: cover;
  z-index: 0;
} */



/* .socialMedia{
  background-color: #000000;
  color: #f2f6f9;
} */

.socialMedia {
  grid-area: socialMedia;
  background-color: #000000;
  color: #f2f6f9;
  text-decoration: none;
  font-size: 5rem;
  text-align: center;
  vertical-align: bottom;

}

.homeLinks:hover {
  text-decoration: line-through;
}

.emailContact {
  background-color: #000000;
  color: #f2f6f9;
}

#emailContact {
  grid-area: emailContact;
  background-color: #000000;
  color: #f2f6f9;
  text-decoration: none;
  font-size: 5rem;
  text-align: center;
  vertical-align: center;
}

.aboutBoxOpen {
  display: none;
  position: relative;
  width: 90vw;
  height: 100vh;
  left: 50%;
  transform: translateX(-50%);
  /* top: -51vh; */
  float: top;
  transition: all 0.5s;
  font-family: "cofo-sans-mono-variable", sans-serif;
  font-variation-settings: 'wght' 400;
  font-style: normal;
  background-color: #f2f6f9;
}

.aboutText {
  position: relative;
  font-size: 3rem;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 5%;
  margin-right: 5%;
}

.proficiencyBox {
  margin-top: 10%;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10% 10%;
  grid-auto-flow: row;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  grid-template-areas:
    "photoShop illustrator afterEffects premierePro audition"
    ". htmlCss blender c4d .";
  width: 75%;
  height: 30%;
  left: 50%;
  transform: translateX(-50%);
}

.photoShop {
  grid-area: photoShop;


  width: 100%;
  height: 100%;
}

.illustrator {
  grid-area: illustrator;

  width: 100%;
  height: 100%;
}

.afterEffects {
  grid-area: afterEffects;

  width: 100%;
  height: 100%;
}

.premierePro {
  grid-area: premierePro;

  width: 100%;
  height: 100%;
}

.blender {
  grid-area: blender;
  width: 100%;
  height: 100%;
}

.htmlCss {
  grid-area: htmlCss;
  width: 100%;
  height: 100%;
}

.audition {
  grid-area: audition;
  width: 100%;
  height: 100%;
}

.c4d {
  grid-area: c4d;
  width: 100%;
  height: 100%;
}

#logo {
  width: 100%;
  height: 100%;
  position: relative;

  object-fit: cover;
  z-index: 0;
}

/* -------------------------------------------------------------------------------------------footer-------------------------------------------------------------------------------- */

.footer {
  bottom: 0;
  width: 100vw;
  height: 10vh;
  background-color: #000000;
}

.screenWarning {
  display: none;

  width: 100vw;
  height: 100vh;

  font-family: "novecento-sans-wide", sans-serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  font-size: 2rem;

}

.screenWarningText {

  position: relative;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


@media only screen and (max-width : 1700px) {

  #contentPage {
    display: none;
  }

  #warningPage {
    display: block;
  }
}

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

  #bodyText {
    font-size: 3rem;
  }

  .homeLinks {
    font-size: 4rem;
  }

  #project {
    font-size: 4rem;
  }

  #barText {
    font-size: 4rem;
  }


}