
body{
  overflow-x: hidden;
  overflow-y: hidden;
}

@font-face {
  font-family: 'Prototype';
  src: url('./Prototype.woff') format('woff');
}
 
@font-face{
  font-family: 'Ttl';
  src: url('./good_times_rg.woff') format('woff');
}

@font-face {
  font-family: 'Aquire';
  src: url('./AquireRegular.woff2') format('woff2'),
      url('./AquireRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1{
  text-shadow: 12px 12px 12px black;
}
h2{
  text-shadow: 6px 6px 6px black;
}
h4{
  text-shadow: 2px 2px 2px black;
}

.loader{
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

img {
  height: 200px;
  width: auto;
}

.disppear{
  animation: vanish 1s forwards;
}
@keyframes vanish {
  100%{
    opacity: 0;
    visibility: hidden;
  }
}

#video-background {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.inner-container{
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  align-items: left;
  align-content: center;
  margin-top: 190px;
  padding-left: 8em;
  gap: 20px;
}

.inner-container h1 {
  color: #ffffff;
  font-size: 90px;
  column-gap: -15px;
  margin-bottom: 20px;
  animation: moveInAnimation ease 1.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.inner-container h2 {
  color: white;
  margin: 0;
  font-size: 30px;
  animation: moveInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.inner-container h4 {
  color: white;
  font-size: 20px;
  width: clamp(10em, 25em, 25em);
  animation: moveInAnimation ease 2.3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.ai-text {
  color:rgb(0, 132, 255);
}

.js-discover-button {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: moveInAnimation ease 2.7s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  border-radius: 10em;
  border: 2px solid blueviolet;
}

.js-discover-button:focus {
  color: #171e29;
}

.js-discover-button:hover {
  border-color: #006aff;
  color: #006aff;
  fill: #006aff;
}

.js-discover-button:active {
  border-color: #0091ff;
  color: #0091ff;
  fill: #0091ff;
}

@media (min-width: 768px) {
  .js-discover-button {
    min-width: 170px;
  }
}
  
@media (max-width: 2560px) {
  .inner-container {
    margin-top: 170px;
  }
}

@media (max-width: 650px) {
  .inner-container {
    padding-left: 3em;
  }
}

@media (max-width: 600px) {
  .inner-container {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .inner-container h4{
    max-width: 15em;
  }
}

@media (max-width: 433px) {
  .inner-container {
    padding-left: 10px;
  }
  
}

@media (max-width: 428px) {
  .inner-container {
    padding-left: 10px;
  }

  .inner-container h4 {
    width: 15em;
  }

  
}

@media (max-width: 425px) {
  .inner-container h4{
    width: 15em;
    font-size: 20px;
  }

  .inner-container {
    margin-top: 220px;
    padding-left: 0.5em;
  }
  
  .inner-container h1 {
    font-size: 60px;
  }

  .inner-container h2 {
    font-size: 20px;
  }



  .js-discover-button {
    min-width: 20px;
  }
}

@media (max-width: 377px) {
  .inner-container {
    padding-left: 10px;
    margin-top: 220px;
  }
  .inner-container h1 {
    font-size: 70px;
  }

  .inner-container h2 {
    font-size: 30px;
  }
  
  .inner-container h4 {
    font-size: 15px;
  }

  .js-discover-button {
    min-width: 20px;
  }
}

@keyframes moveInAnimation {
  0% {
    transform: translateX(-12em);
  }
  100% {
    transform: translateX(0);
  }
}