@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

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

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

.card{
    height: 464px;
    width: 312px;
    background-color: white;
    border-radius: 24px;
}

.top{
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    
}

.top img{
    width: 90%;
    height: 100%;
    border-radius: 12px;
    
}

.bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.bottom_content{
    margin-top: 10px;
    width: 80%;
}

.bottom, .bottom_content h3{
    margin-bottom: 10px;
}

.bottom, .bottom_content p{
    font-size: clamp(14px, 1.5vw, 15px);
}

@media screen and (max-width: 375px){
    .card{
        width: 90%;
    }

    .top img{
        max-width: 90%;
        max-height: 100%;
    }
}