* {
    margin: 0;
}

body {
    background-image: url("/images/Background_Image.jpeg");
    width: auto;
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.container {
    background-color: #d5e1ef;
    height: 800px;
    width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 10px 25px 24px 2px rgb(41 39 39 / 20%);
    border-radius: 15px;
}

.qrcode {
    background-color: #ffffff;
    height: 400px;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 20px 20px 2px rgb(90 86 86 / 20%);
    border-radius: 20px;
}

.qrcode img {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    border-radius: 20px;
}

.qrcode h1 {
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-family: system-ui
}

.qrcode p {
    font-size: 12px;
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-family: system-ui;
    text-align: center;

}

footer {
    font-size: 15px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #cacaca;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1.5rem;
}

footer a {
    color: hsl(228, 45%, 44%);
}