.milfs  {
    font-family: ComicSansMS;
    font-size: 60px;
    font-style: italic;
    font-weight: bold;
    
  }

  .big  {
  font-size: 30px;
  }


  .square-10 {
    transition: all 1s;
    transform: rotate3d(-2,2,1, 0deg) translate3d(0px, 0, -50px);
  }
  
  .square-10:hover {
    transform: rotate3d(1,2,1, 360deg) translate3d(20px, 0, 0) scale(1.7);
  }

  .slidein {
    font-size: 25px;
    color: rgb(0, 255, 26);
    animation-duration: 6s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }
  
  .wrapper {
    display: flex;
  /*   flex-wrap: wrap; */
  }
  
  .wrapper div {
    transition: background .2s 10s;
    height: 20px ;
    width: 20px;
  }
  .wrapper div:hover {
    transition: background .2s;
    background: rgb(0, 55, 255);
  }

  .boxes {
    position: relative;
  }

  .horizontal {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    position: absolute;
   
    top: 50%;
    

    pointer-events: none;
  }

  .glueck {
position: absolute;
right: 40px;
top: 20px;

  }

  .rainbow {
    position: absolute;
    left: 40px;
    top: 150px ;
  }


 

  .anim-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #036cff;

    height: 60px;
    
    animation-duration: 5s;
    animation-name: font;
    animation-iteration-count: infinite;
  }
  
  @keyframes font {
    0% {
      font-family: monospace;
      font-size: 35px;
    }
    
    20% {
       font-family: serif;
       font-size: 35px;
    }
    
    40% {
       font-family: cursive;
       font-size: 35px;
    }
    
    60% {
       font-family: sans-serif;
       font-size: 35px;
    }
    
    80% {
       font-family: fantasy;
       font-size: 35px;
    }
  }

  .position {
    position: absolute;
    left: 35%;
    bottom: 85px;
  }
  
  a {
    text-decoration: none;
  }