*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 
/////
Fonts 
/////
*/
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../assets/fonts/Inter-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../assets/fonts/Inter-SemiBold.ttf) format('truetype');
}

html {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
}

/*
//////
LAYOUT
//////
*/

#root {
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: url(../assets/preview_blurred.jpg) no-repeat center center fixed;
    background-size: cover;
}

.cta_button {
    margin-top: 30rem;

    font-size: 0rem;

    background-color: #003F6C;
    color: #ffffff;

    border-radius: 1rem;
}

#qr-code {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    
    justify-content: center;
    align-items: center;

    width: 100%;
    min-width: 30rem;
    max-width: 60rem;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 4rem;

    border-radius: 1rem;
}
    .info-text {
        color: #003F6C;
        font-size: 2.4rem;
        font-weight: 600;
        text-align: center;
    }