@import url(https://fonts.google.com/specimen/Outfit);
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body{
    max-width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.card_container{
    width: 320px;
    height: 499px;
    padding:  16px 16px 40px 16px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 3px 3px 20px rgb(213, 213, 213);
    text-align:center;
}

.card_container img{
    width:288px;
    height: 288px;
    border-radius:10px;
}

.text_container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.text_container h2{
    font-size: 22px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    line-height: 120%;
    letter-spacing: 0;
}

.text_container p{
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: hsl(216, 15%, 48%);
}

@media (max-width:375px){
    .card_container{
        width: 90%;
        height: auto;
        padding: 16px;
    }

    .card_container img{
        width: 100%;
        height: auto;
    }

    .text_container h2{
        font-size: 20px;
    }

    .text_container p{
        font-size: 14px;
    }
}