html{
    padding: 50px;
}
h1 { 
    text-align: center;
    font-family: 'Chakra Petch', sans-serif;
    color: #d9fff9;
    font-size: 80px;
    letter-spacing: 6px;
    font-weight: 300;
    margin: 0;
    line-height: 0;
    animation: glitching1 0.5s infinite;
  }
  h1:nth-child(2) {
    color: #0ef0e1;
    animation: glitching2 1.0s infinite;
  }
  h1:nth-child(3) {
    color: #ff94eb;
    animation: glitching3 1.0s infinite;
  }
  @keyframes glitching1 {
    0% {
      transform: none;
      opacity: 1;
    }
    50% {
      opacity: 0.75;
    }
    100% {
      transform: none;
      opacity: 1;
    }
  }
  @keyframes glitching2 {
    0% {
      transform: none;
      opacity: 0.25;
    }
    50% {
      transform: translate(-4px, -1px);
      opacity: 0.5;
    }
    100% {
      transform: none;
      opacity: 0.25;
    }
  }
  @keyframes glitching3 {
    0% {
      transform: none;
      opacity: 0.25;
    }
    50% {
      transform: translate(4px, 1px);
      opacity: 0.5;
    }
    100% {
      transform: none;
      opacity: 0.25;
    }
  }
  h2{
    font-family: 'Chakra Petch', sans-serif;
    text-align: center;
    padding: 20px;
    color:white;
    font-size: 20px;
  }

  img {
    max-width: 100%;
    display: flex;
    align-items:center;
  }
  .container {
    display: flex;
    align-items: center;
    justify-content: center
  }
  p{
    font-family: 'Roboto Condensed', sans-serif;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    color: white;
  }
  .sentence{
    text-align: center;
    font-family: 'Trocchi', serif;
  }
.leftsidetext{
    font-family: 'Roboto Condensed', sans-serif;
    padding: 40px;
    color: white;
    text-align:center;
    font-size: 30px;
  } 
  #myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .backIcon{
    margin-top: 5px;
}

.changehighlight:hover{
    color: black;
    background-color: white;
}

span{
    color: #d9fff9;
    letter-spacing: 6px;
    animation: glitching1 0.5s infinite;  
}

details{
    font-family: 'Roboto Condensed', sans-serif;
    padding: 20px;
    font-size: 20px;
    color: white;
}

.spinning:hover{
    display: flex;
    justify-content: center;
    animation-name: rotate;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
  }
    @keyframes rotate {
      0% {
        transform: rotate(0);
      }
      100% {
        transform: rotate(360deg);
      }
    }