@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400..700&display=swap');
*,
*::before,
*::after{
    box-sizing: border-box;
}

*{
    margin: 0;
    padding: 0;
}

body {
    background-color: #d5e1ef;
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* existing styles remain */
}

.container{
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    width: 100%; /* Adjusted for better mobile responsiveness */
    max-width: 320px; /* Limits maximum width */
    height: auto; /* Let content determine height */
    text-align: center;
}

.text{
    margin: 20px;
    text-align: center;
}
    img{
        border-radius: 10px;
        width: 100%;
        height: auto; /* Maintain aspect ratio */
    }

    h1{
        font-weight: 900;
        font-size: 22px;
        line-height: 120%;
        letter-spacing: 0px;
        color: #1f324f;
    }

    p{
        font-size: 15px;
        line-height: 140%;
        letter-spacing: 0.2px;
        color: #68778d;
        margin: 20px 0px 20px;
    }