  @media screen and (max-width: 700px) {

    html, body {
       font-size: 10px;
       line-height: 8rem;
       height: 100vh;
    }

    h1 {
      font-size: 8rem;
      line-height: 8rem;
    
    }
    h2 {
      font-size: 5rem;
      line-height: 4rem;
    
    }
  }

  @media screen and (max-width: 500px) {

    html, body {
      font-size: 7px;
      height: 100vh;
   }

    h1 {
      font-size: 7rem;
      line-height: 40px;
    
    }

    h2 {
      font-size: 4rem;
    
    }
  } 
  
  
  @media screen and (max-width: 500px) {

    html, body {
      font-size: 7px;
      height: 100vh;
      width: 100vw;
      overflow-x: hidden;
   }

   .card-front p {
font-size: 50px;
line-height: 25px;
   }
   .card-back a {
     font-size: 40px;
     line-height: 35px;
     padding-right: 50px;
     padding-left: 50px;
     text-align: center;
   }

    p {
      font-size: 3rem;
      line-height: 20px;
    
    }

    p1 {
      font-size: 5rem;
      line-height: 4rem;
      left: 10px;
    
    }

 
  .card-back a {

padding-left: -10px;
  }
  .nope-anim {
    position: relative;
    width: 300px;
    height: 100px;
    border-radius: 50%;
    background: #000000;
    top: 180%;
    left: 15%;
    cursor: pointer;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(-50px, 1fr));
    grid-gap: 300px;
    margin: 10px 0;
    margin-top: 10%;
    font-size: 10px;
  
  
  
  }
  
  .nope-anim-1 {
    position: relative;
    left: -22px;
    font-size: 10px;
    color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: bold;
  
  
  }
  
  .nope-anim:hover {
    animation: nope .4s forwards;
  }
  
  @keyframes nope {
  
    0% {
      transform: translateX(0px);
    }
  
    20% {
      transform: translateX(-10px);
    }
  
    40% {
      transform: translateX(10px);
    }
  
    60% {
      transform: translateX(-10px);
    }
  
    80% {
      transform: translateX(10px);
    }
  
    100% {
      transform: translateX(0px);
    }
  
  }
}