@import url('https://fonts.googleapis.com/css2?family=Ysabeau:wght@1;300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ysabeau', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url(./RE4wyTn.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.wrapper{
    height: 300px;
    max-width: 510px;
    color: white;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 7px;
    padding: 16px 25px;
    transition: height 0.4s ease;
}
.wrapper.active{
    height: 590px;
}
header h1{
    color: #e9c881;
    font-weight: 900;
    text-shadow: 2px 2px 5px black;
}
header p{
    margin-top: 7px;
    color: #e9c881;
    font-size: 18px;
    font-weight: 800;
}
.wrapper .textContainer{
    margin: 20px 0 30px;
}
.textContainer :where(input, button){
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 7px;
}
.textContainer input{
    background: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    padding: 0 17px;
    border: 1px solid #999;
}
.textContainer button{
    color: aliceblue;
    cursor: pointer;
    margin-top: 20px;
    font-size: 17px;
    background-color: #cea82dcb;
}
.wrapper .qr-code{
    display: flex;
    opacity: 0;
    pointer-events: none;
    padding: 33px 0;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background-color: #ffffff;
}
.wrapper.active .qr-code{
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.8s 0.2s ease;
}
.foot{
    text-align: center;
}
a{
    color: #cea82dcb !important;
    font-family: Verdana;
    text-shadow: 2px 2px 5px black;
    font-weight: 600;
    text-decoration: none !important;
}