.body {

}

.header {
      position: relative;
      font-family: "Inter", sans-serif;
      font-size: 4.5rem ;
      font-weight: 700;
      text-align: center;
      margin-bottom: 0px;
    }
    
    .header::before {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to right,
        rgba(222, 124, 255, 1) 0%,
        rgba(115, 70, 251, 1) 50%,
        rgba(222, 124, 255, 1) 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientAnimation 6s linear infinite;
    }
    
    @keyframes gradientAnimation {
      0% {
        background-position: 0% center;
      }
      100% {
        background-position: 200% center;
      }
    }

.header2 {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 24px;
  background: #ffffff;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(194, 194, 194, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 18px;
  margin-bottom: 0px;
}
.main-video {
  border-radius: 36px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}
.video {
    display: flex;
    justify-self: center;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 0px;
    color: white;
    font-size: 36px;
    font-family: "Inter", sans-serif;
    max-width: 1080px;
    width: 100%;
    aspect-ratio: 1080 / 607;
    text-align: center;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 30px;
  justify-content: center;
  align-items: center;
  outline: 10px red;
  margin-top: 30px;
}

button {
  width: 265px;
  height: 94px;
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  cursor: pointer;
  flex: 0 0 auto;
}
.legit {

  background-color: #238B2A;
}
.legit:hover {
  background-color: #238b2a85;
  transition: 300ms;
}
.hacked {

  background-color: #912424;
}
.hacked:hover {
  background-color:#9124248d;
  transition: 300ms;
}


.score {
  font-family: "Inter", sans-serif;
  padding-top: 18px;
  display: flex;
  color: white;
  font-size: 32px;
  justify-content: center;
  align-items: center;
}
.btn-reset:hover {
 opacity: 0.7;
 transition: 300ms;
}
.btn-reset {
  background-color: #0c0c0c85;
}
.reset {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;

}
.headers {

}
.css-selector {

  width: 50px;
  height: 20px;
  font-size: 16px;
}
.answer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.answer-text {
  font-size: 2rem;
  color: white;
  font-family: "Inter", sans-serif;
}
.hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.hint-btn {
  background-color: rgb(206, 182, 0);
}
.hint-btn:hover {
  opacity: 0.8;
  transition: 300ms;
}
