* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .full-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .img-section {
    position: relative;
  }
  
  /* .btn {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    
    background: #0c0c59;
    color: #fff;
    text-decoration: none;
    padding: 1vw 2vw;
    font-size: 1.5vw;
    border-radius: 8px;
  } */

  .img-section {
    position: relative;
  }
  
  .full-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .btn {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .btn img {
    width: 25vw;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .btn:hover img {
    transform: scale(1.05);
  }

  .btn:active img {
    transform: scale(0.97);
    opacity: 0.85;
  }
  
  
  @media (max-width: 768px) {
    .btn img {
      width: 50vw;
    }
  
    .btn {
      bottom: 30%;
    }
  }
  