* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.app-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.big-box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
    width: 100%;
    height: 100vh; 

    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.card{
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    width: 30%;
    height:500px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.qr-code {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    max-width: 300px;
    max-height: 300px;
}

h1{
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 10px;
}
p{
    font-size: 1rem;
    font-weight: 400;
    color: hsl(220, 15%, 55%);
}

.text-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    margin-top: 10px;
}
@media screen and (max-width: 768px) {
    .big-box {
        width: 100%;
        height: 100vh;  
    }

    .card {
        width: 100%; 
        height: 500px;
        padding: 20px;
    }

    .qr-code {
        max-width: 250px;
        max-height: 250px;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .big-box {
        width: 100%;
        height: 100vh; 
        padding: 16px;
    }

    .card {
        width: 75%; 
        height: 500px;
        padding: 18px;
    }

    .qr-code {
        max-width: 300px;
        max-height: 300px;
    }

    h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}
