
  #section2{
    background-color: black;
    width:100%;
    height:100vh;
    z-index: 100;
    position: relative;
    margin-top: 10vh;
  }
  #section2 #text{
    width:36.9vw;
  }
  
  #section2 #text:has(.fancy:hover) .word:not(.fancy:hover){
    opacity:0.2;
    animation-name: opacity;
    animation-duration: .25s;
  }
  @keyframes opacity {
    from {opacity:1}
    to {opacity:0.2}
  }
  
  #section2 .line{
    display:flex;
    justify-content: space-between;
  }
  
  #section2 .fancy > .letter {
    display:inline-block;
    transition: transform 350ms ease-in;
  }
  
  #section2 .fancy:hover > .letter{
    transition-duration: 800ms;
  }
  
  #section2 .fancy:hover > .letter:nth-child(1){
    transform:translate(-70%,50%) rotate(15deg);
  }  #section2 .fancy:hover > .letter:nth-child(2){
    transform:translate(-20%,0%) rotate(8deg);
  }  #section2 .fancy:hover > .letter:nth-child(3){
    transform:translate(-20%,30%) rotate(-5deg);
  }
  #section2 .fancy:hover > .letter:nth-child(4){
    transform:translate(0%,-15%) rotate(-10deg);
  }
  #section2 .fancy:hover > .letter:nth-child(5){
    transform:translate(0%,-50%) rotate(10deg);
  }
  #section2 .fancy:hover > .letter:nth-child(6){
    transform:translate(0%,0%) rotate(-12deg);
  }
  #section2 .fancy:hover > .letter:nth-child(7){
    transform:translate(20%,-60%) rotate(-8deg);
  }
  #section2 .fancy:hover > .letter:nth-child(8){
    transform:translate(0%,0%) rotate(12deg);
  }
  #section2 .fancy:hover > .letter:nth-child(9){
    transform:translate(0%,-50%) rotate(-10deg);
  }
  #section2 .fancy:hover > .letter:nth-child(10){
    transform:translate(0%,25%) rotate(10deg);
  }
  #section2 .fancy:hover > .letter:nth-child(11){
    transform:translate(20%,0%) rotate(-8deg);
  }
  #section2 .fancy:hover > .letter:nth-child(12){
    transform:translate(15%,20%) rotate(14deg);
  }
  #section2 .fancy:hover > .letter:nth-child(13){
    transform:translate(25%,-26%) rotate(45deg);
  }
  
  #section2 a{
    color:white;
    font-size: 4.5vw;
    font-family: "Rubik", sans-serif;
    margin:0rem;
    text-transform: uppercase;
    text-decoration: none;
  }