* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    width: 100vw;
    height: 100vh;
    background-color: #ffb6c18c;
    position: relative;

}

h1 {
    font-size: 3rem;
    margin-top: 1.3rem;
}

.card {

    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

span {
    color: #b100b8;
}

input {


    padding: 1rem 1.3rem;
    margin: 3rem 0rem 0.4rem 0rem;
    width: 40vw;
    border-radius: 1.5rem;
    border: none;
    outline: none;


}

.btn {
    margin: 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

button {
    width: 12vw;
    padding: 13px 0px;
    border: none;
    color: white;
    background-color: #b100b8;
    border-radius: 1rem;
    font-size: 1rem;
    transition: 0.1s ease-in-out;
}

button:hover {

    background-color: #540357;
    transition: 0.1s ease-in-out;

}

#qrcode {
    /* width: 215px;
height: 215px; */
    width: 14rem;
    height: 14rem;
    border: 3px double #09ebdf;
    /* border: 3px double #b100b8; */
    padding: 0.6rem;
    margin-top: 0.6rem;

}

.tagline {
    font-size: 1rem;
    margin-top: 1.3rem;
}

.footer {
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 1%;
    background-color: #ffb6c1c9;
    text-align: center;

}

/* Responsive design */
@media (max-width: 768px) {

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 14px;
        margin-top: 1rem;
    }
    .card {
        padding: 2rem;
        
    }
    button {
      font-size: 0.8rem;
      width: 30vw;
      padding:10px 3px; 
       
    }

   
    input {
        width: 80vw;
       
        
    }
   
  
}
@media (max-width: 1080px) {

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 14px;
        margin-top: 1rem;
    }
    .card {
        padding: 2rem;
        
    }
    button {
      font-size: 0.8rem;
      width: 30vw;
      padding:10px 3px; 
       
    }

   
    input {
        width: 80vw;
       
        
    }
   
  
}
