* {
    box-sizing: border-box;
  }

  @font-face {
    font-family:Inkn;
    src: url(InknutAntiqua-Regular.ttf);
  }

  @font-face {
    font-family:Ubu;
    src: url( Ubuntu-LightItalic.ttf);
  }
 

  body {
    background: #090b0c;
  }
  @media screen and (min-width: 450px) {

  img {
    width: 9%;
    height: 9%;
    animation: blink 1s infinite;
    position:relative
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes move {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(calc(100vw - 100px), calc(100vh - 100px));
    }
  }
  
  .ani {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: move 6s linear infinite;
  } */
  

  .wrapper {
    padding: 10px 20px;
    margin:0;
  }
  .animated-image {
    position: absolute;
    top: 0;
    left: 0;
    animation: rotate 3s linear infinite;
    width: 30%;
    height: auto;
    

  }



  #collection {
    display:flex;
    flex-wrap:wrap;
    flex: 1 0 21%; 
    margin-left: 0;
    gap: 1vw;
  }


  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }

  

  h2{
    font-weight: 500;
    font-size: 3vw;
    z-index: 0;
    color: #ffffff;
    text-align: left;
    position: relative;
    display: inline-block;
    font-family:Inkn;
  }


  h3{
    font-family:Inkn;
    font-size: 3vw;
    z-index: 0;
    color: #ffffff5a;
    position: relative;
    display: inline-block;
    margin-top: 1%;
  }

  .details {
    /* background-color:rgb(255, 255, 255); */
    max-width:500px;
    /* opacity:0; */
    font-family:Ubu;
    text-align: center;
    font-size: 16px;
    position: relative;
  }


  .image {
    width: 50px;
    height: auto;
    
  }

.heading {
  color:white;
  font-family:Inkn;
  line-height:1.7;
  margin-bottom:50px;

}

.heading p {
  margin-top:-10px;
}


  .hover-info {
    display: none;
    position: absolute;
    color: rgb(0, 0, 0);
    top: 0;
    left: 0;
    width:200px;
    height: 150px;
    background-color: #ffffff;
    z-index: 10000000000000000000000000000000;
  }
  .details:hover > .hover-info {
    display: block;
  }


  a{
    font-family:Inkn;
    font-size: 1.6vw;
    text-transform: capitalize;
    color: #FFFFFF;
    text-decoration: none;
    }
  
    .item img{
      width: 2vw;
      margin-right:10px;
      height: auto;
    }

    .item { 
      left: 50%;
      padding: 1vw;
      width:55%;
      background-color: white;
      position:fixed;
      z-index:1;
      color:black;
      bottom:0;
    }

    .item a {
      color:black;
      margin-right:3vw;
      font-size: 1vw;
    }
    
    .item p{
      font-family:Inkn;
      text-transform: uppercase;
      color:black;
      font-size: 1.6vw;
      line-height: 2%;
    }
  }
  @media screen and (max-width: 449px) {
    img {
      width: 9%;
      height: 9%;
      animation: blink 1s infinite;
      position:relative
    }
    
  
    #collection {
      display:flex;
      flex-wrap:wrap;
      flex: 1 0 21%; 
      margin-left: 0;
      gap: 1vw;
    }
  
  
    @keyframes blink {
      0% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
      100% {
        opacity: 1;
      }
    }
  
    
  
    h2{
      font-weight: 500;
      font-size: 3vw;
      z-index: 0;
      color: #ffffff;

      position: relative;
      display: inline-block;
      font-family:Inkn;
    }
  
  
    h3{
      font-family:Inkn;
      font-size: 3vw;
      z-index: 0;
      color: #ffffff5a;
      position: relative;
      display: inline-block;
      margin-top: 1%;
    }
  
    .details {
      /* background-color:rgb(255, 255, 255); */
      max-width:500px;
      /* opacity:0; */
      font-family:Ubu;
      text-align: center;
      font-size: 16px;
      position: relative;
    }
  
  
    .image {
      width: 6vw;
      height: auto;
      
    }
  
    .hover-info {
      display: none;
      position: absolute;
      color: rgb(0, 0, 0);
      top: 0;
      left: 0;
      width:200px;
      height: 150px;
      background-color: #ffffff;
      z-index: 10000000000000000000000000000000;
    }
    .details:hover > .hover-info {
      display: block;
    }
  
  
    a{
      font-family:Inkn;
      font-size: 1.6vw;
      text-transform: capitalize;
      color: #FFFFFF;
      text-decoration: none;
      }
    
      .item img{
        width: 3vw;
        margin-right:5px;
        height: auto;
      }
  
      .item { 
        padding: 1vw;
        width:96%;
        background-color: white;
        position:fixed;
        z-index:1;
        color:black;
        bottom:0;
      }
  
      .item a {
        color:black;
        margin-right:1px;
        font-size: 2vw;
      }
      
      .item p{
        font-family:Inkn;
        line-height: 2%;
        text-transform: uppercase;
        color:black;
        font-size: 2.4vw;
      }

      




      
      @keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      
      @keyframes move {
        from {
          transform: translate(0, 0);
        }
        to {
          transform: translate(calc(100vw - 100px), calc(100vh - 100px));
        }
      }
      
      .ani {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        animation: move 6s linear infinite;
        animation: rotate 3s linear infinite;
        width: 30%;
        height: auto;
      } */
      
      
 
      .topic {
        width:100%;
        font-family:Inkn;
        z-index:1;
        font-size: 1px;
        color:rgb(255, 255, 255);
      }
      .heading {
        color:white;
        font-family:Inkn;
        line-height:1.7;
        margin-bottom:50px;
        font-size: 2.5vw;
      
      }
      
      .heading p {
        margin-top:0px;
      }
      
    
    }