*{
padding: 0;
margin: 0;
transition: .2s ease;
}

body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: rgb(40, 62, 66);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}

.qr-container{
    background: rgb(255, 255, 255);
    box-shadow: 0px 10px 15px rgba(0,0,0,.5);
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-container h1{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-size: 40px; */
    margin-bottom: 10px;
}

.qr-container textarea{
    padding: 5px;
    font-size: 14px;
    width: 98%;
    border: 1px solid rgb(47, 123, 255);
    border-radius: 10px;
}

label{
    /* background: grey; */
    width: 100%;
    font-weight: 600;
    font-size: 16px;
}

button{
    padding: 10px;
    margin: 10px;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    background: rgb(47, 123, 255);
    color: white;
}

button:hover{
    box-shadow: 0px 0px 15px rgba(0, 81, 255, 0.747);
    transform: scale(1.03);
} 

#qrcode{
    /* margin-top: 10px; */
    /* padding: 2px; */
    background: rgb(47, 123, 255);
    border-radius: 5px;
    /* border: 2px solid black; */
}