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

img{
    width: 100%;
    max-width: 100%;
    display: block;
}

.container{
    background: rgb(197,249,215);
    background: linear-gradient(90deg, rgba(197,249,215,1) 0%, rgba(247,212,134,1) 30%, rgba(242,122,125,1) 100%);
    height: 100vh;
    max-height: 550px;
}

.container__wrap{
    max-width: 397px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    padding: 40px 25px 0;
}

.container__image{
    width: 232px;
}

.container__text{
    width: max-content;
    margin-bottom: 40px;
    color: #333333;
}

.container__title{
    font-size: 26px;
    line-height: 39px;
}

.container__paragraph{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

@media screen and (min-width: 576px) {
    .container__title{
        font-size: 32px;
        line-height: 48px;
    }
    .container__paragraph{
        font-size: 22px;
        line-height: 26px;
    }
}

@media screen and (min-width: 768px) {
    .container{
        max-height: 440px;
    }

    .container__wrap{
        max-width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
}
@media screen and (min-width: 992px){
    .container{
        max-height: 570px;
    }
    .container__wrap{
        gap: 5%;
    }
    .container__image{
        width: 309px;
    }
    .container__title{
        font-size: 35px;
        line-height: 53px;
    }
    .container__paragraph{
        font-size: 25px;
        line-height: 26px;
    }
}
@media screen and (min-width: 1280px){
    .container__wrap{
        gap: 123px;
        justify-content: center;
    }
}