* {
    padding: 0;
    margin: 0;
    font-family: "Host Grotesk", sans-serif;
    color: #fff;
}

body {
    background: linear-gradient(130deg, #397cb1, #a65fe1, #295598);
    background-size: 200% 200%;

    -webkit-animation: Animation 5s ease infinite;
    -moz-animation: Animation 5s ease infinite;
    animation: Animation 5s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100dvh;
}

.container {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 500px;
    height: 400px;
    padding: 10px;
    margin-bottom: 20px;
}

h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
}

#qrcode {
    
}

.contain-ipt {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 75%;
}

#ipt {
    padding: 5px 10px;
    width: 100%;
    font-size: 16px;
    color: rgba(17, 25, 40, 0.75);
    border-radius: 8px;
}

button {
    padding: 10px;
    width: 120px;
    border: none;
    border-radius: 8px;

    background: linear-gradient(130deg, #397cb1, #a65fe1, #295598);
    background-size: 200% 200%;

    -webkit-animation: Animation 5s ease infinite;
    -moz-animation: Animation 5s ease infinite;
    animation: Animation 5s ease infinite;

}

@-webkit-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

footer {
    position: absolute;
    bottom: 25px;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }    
}