/*this*/
/*this*/
/*this*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

noscript {
  display: block;
  text-align: center;
  padding: 50px;
}

body {
  visibility: hidden;
}

body.loaded {
  visibility: visible;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.black {
  background-color: rgb(25, 20, 19);
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.tangerine {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 9rem;
  margin: -0.25rem;
}

@keyframes sparkle {
  0% {
    color: rgb(25, 20, 19);
  }
  10% {
    text-shadow: 0px 0px 30px rgb(100, 100, 110);
  }
  80% {
    color: white;
    text-shadow: 0px 0px 60px rgb(250, 250, 250);
  }
  100% {
    color: rgb(230, 230, 230);
    text-shadow: -1px 1px 20px rgb(200, 200, 200);
  }
}
@keyframes bounce {
  0% {
    top: 80%;
    opacity: 0;
  }
  50% {
    top: 87.5%;
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}
body::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome CHECK OTHERS*/
}

#myvideo-container {
  position: relative;
  height: 100%;
  width: 100vw;
  overflow: hidden;
}
#myvideo-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.95;
}
#myvideo-container #mynav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  transition: background-color 1s ease;
  z-index: 1;
}
#myvideo-container .myoffcanvas {
  background-color: rgb(25, 20, 19);
}
#myvideo-container #mytitle {
  position: relative;
  animation-name: sparkle;
  animation-duration: 4s;
  animation-direction: normal;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  line-height: 2.5rem;
}
#myvideo-container #mytitle #myarticle {
  position: relative;
  top: 5px;
  left: -10px;
  margin: 11rem;
  font-weight: 500;
}
#myvideo-container #myarrow {
  visibility: hidden;
  position: absolute;
  color: white;
  animation-name: bounce;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
#myvideo-container #fading {
  background-image: linear-gradient(-150deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.75) 90%);
  z-index: -1;
  margin-bottom: 18rem;
  margin-top: 6rem;
}

#mymodal {
  margin-top: 25%;
}

#myjumbo {
  background-color: rgb(246, 187, 157);
}

@media (width > 768px) {
  .tangerine {
    font-size: 12rem;
  }
  .cormorant-garamond {
    font-size: 5rem;
  }
  #myvideo-container #mytitle {
    line-height: 1.85rem;
  }
  #myvideo-container #mytitle #myarticle {
    margin: 14rem;
  }
}/*# sourceMappingURL=index.css.map */
