body{
    background-color: skyblue;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#qrcode{
    width: 320px;
    height: 500px;
    background-color: white;
    margin: 0 auto;
    font-size: small;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
    
}

.section{
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:20px;
    overflow: hidden;
}

h5{
    font-size: 15px;
    text-align: center;
    margin: 20 px;
}

p{
    color: gray;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px){
    #qrcode{
      width: 320px;
      height: 550px;


    }

    h5{
      font-size :1.2rem;

    }

    p{
      font-size : 1rem;
    }
  }
    
