/* white: E0E7CE
border_black: 2E191F
orange: E07900 */


body {
  /* height: 3000px; */
  /* background: linear-gradient(55deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 85%); */
  /* background: linear-gradient(0deg, #ffffff 0%, #000000 51%, #000000 85%); */
  /* background: linear-gradient(0deg, #ffffff 0%, #ffffff 50%, #000000 51%, #000000 100%); */
  background-color: black;
  margin: 0;
  padding: 0;
}

h1 {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Garamond';
  font-weight: 700;
  font-size: 4vw;
  color: white;
}

h2 {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Garamond';
  font-weight: 600;
  font-size: 2.4vw;
  color: white;
}

p {
  font-family: 'Garamond';
  font-weight: 500;
  font-size: 2vw;
  color: white;
}

#canvas {
  position: fixed;
  top: 0;
  /* left: 50%; */
  /* left: 10%; */
  transform: translateX(-50%);
  z-index: -1;


}


#title-container {
  position: absolute;
  /* top: 50%; */
  top: 400px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  opacity: 0;
  animation: fade-in 2.5s ease-in forwards;
}

a:link {
  color: #ffeeaa;
}

a:visited {
  color: #e9a700;
}

a:hover {
  color: #ffcc00;
}


.content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* margin-top: 50%; */
  margin: 60% 15%;
  animation: fade-in 3.5s ease-in forwards;
  /* margin: % 10%; */
  /* margin: 20px; */


  /* border: 5px solid;
  border-color: brown; */

  /* margin-top: 60%; */
  /* padding: 10%; */
}

#about-me-container-left {
  /* position: absolute; */
  margin-bottom: 200px;
  /* top: 1000px; */
  /* left: 50%; */
  /* left: -10%; */
  /* transform: translate(-50%, -50%); */

  right: 0%;
  text-align: left;
  color: white;
  z-index: 1;
  /* padding: 30% 8% 15%; */
  /* opacity: 1; */
  /* animation: fade-in 4.5s ease-in forwards; */
}

#about-me-container-right {
  margin-bottom: 200px;

  left: 0%;
  text-align: right;
  color: white;
  z-index: 1;
  /* padding: 30% 8% 15%; */
}

#additional-text {
  position: absolute;
  top: 4000px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  opacity: 1;
  /* z-index: 1; */
  /* opacity: 0;
  animation: fade-in 2.5s ease-in forwards; */
}


@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



@media only screen and (max-width: 1200px) {
  #title-container {
    font-size: 30px;
  }

  #canvas {
    left: 15%
  }
}



.hidden {
  opacity: 0;
  transform: translateX(-2%);
  transition: all 0.7s ease-out;
  /* transition-delay: 0.4s; */
}

.show {
  opacity: 1;
  transform: translateX(0);
  /* transition: all 1; */
}

#scrollImage1 {
  /* .image { */
  /* position: absolute; */
  /* width: 100vmin; */
  width: 100%;
  height: 50vmin;
  /* height: 50vh; */
  /* height: 30%; */
  /* height: 30%; */
  object-fit: cover;
}

#scrollImage2 {
  width: 100%;
  /* width: 50vmin; */
  height: 30vh;
  object-fit: cover;
}

#right-video {
  float: right;
  width: 50%;
  /* height: 50%; */
  margin: 0 0 0 15px;
  pointer-events: none;
}

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

  /* keep desktop layout unchanged; move title up on mobile so it doesn't sit below content */
  #title-container {
    top: 20vh;
    transform: translate(-50%, 0);
  }

  /* increase title sizes on mobile */
  #title-container h1 {
    font-size: 10vw;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    /* prevent line break between words */
  }

  #title-container p {
    font-size: 4.5vw;
    margin-top: 0.25em;
  }

  .content {
    margin: 80vh 6%;
  }

  /* increase text sizes inside the main content for better readability on mobile */
  .content h1 {
    font-size: 8vw;
  }

  .content h2 {
    font-size: 6vw;
  }

  .content p {
    font-size: 4.5vw;
    line-height: 1.4;
  }
}