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

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

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

.container {
    width: 240px;
    height: 364px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    padding: 14px;
    gap: 20px;
    border-radius: 11px;
}

img {
    width: 220px;
    height: 200px;
    border-radius: 5px;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

h3 {
    font-weight: 700;
    color: hsl(218, 44%, 22%)
}

p {
    font-weight: 400;
    font-size: 13px;
    padding-bottom: 15px;
    color: hsl(216, 15%, 48%)
}

@media screen and (max-width:800px) {
    .container {
        width: 85%;
        height: 460px;
        border-radius: 15px;
    }

    img {
        width: 18rem;
        height: 100%;
        border-radius: 10px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
        margin-bottom: 5px;
        
    }
}