@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


body{
    background-color: black;
    font-family: "Open Sans", sans-serif;
}
  
  *{
    margin:0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .section{
    width: 25%;
    margin: 0 auto;
  }
  .section img{
    height: 100%;
    width: 100%;
  }
  #first{
    position: relative;
  }
  /* .button{
    position: absolute;
    top: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
  } */
  #first a button{
    position: absolute;
    top: 30%;
    left: 30%;
    right:30%;
    padding: 3px 2%;
    background: transparent;
    color: #87001a;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    border: none;
    border: 1px solid #87001a;
    cursor:pointer;
    /* box-shadow: 2px 3px 5px rgba(0,0,0,0.5); */
    transform: 0.5s;
  }
  #first a button:hover{
    background-color: #87001a;
    opacity: 0.7;
    color: #ffffff;
  }

  #last{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #last a{
   position: absolute;
    bottom: 0.7%;
    color: white;
    letter-spacing: 0;
    text-decoration: none;
    color: #ffedc0;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }
  
  #last a:hover{
      color: #87001a;
  }
  
 
  #last .QR-logo{
    position: absolute;
    bottom: 3%;
    width: 29%;
  }
  #last .QR-logo img{
    width: 100%;
  }

  @media(max-width:1200px){
    .section{
      width: 100%;
    }
    .section img{
        width: 100%;
      }
  }
  
  @media(max-width:800px){
      #last a{
          font-size: 75%;
      }
    .section{
      width: 100%;
    }
    .section img{
        width: 100%;
      }
  }