* {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
    color: hsl(218, 44%, 22%);
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(212, 45%, 89%);
    height: 100vh;
    font-size: 15px;
}

.container {
    background-color: white;
    width: 320px;
    height: 499px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 24px;
    padding: 16px 16px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qrcode-container img {
    aspect-ratio: 1 / 1;
    width: 288px;
    border-radius: 15px;
}

.text-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0px 16px;
}

.text-container h3 {
    font-weight: 700;
}

.text-container p {
    color: hsl(216, 15%, 48%);
    font-weight: 400;
}