body {
    position: fixed;
    background-color: #d5e1ef;
    max-width: 1440px;
}

.container {
    align-self: center;
    margin-left: 600px;
    margin-top: 100px;
    background-color: #ffffffff;
    width: 400px;
    height: 600px;
    border-radius: 20px;

}

.row {
    display: flex;
    flex-direction: row;
    position: relative;
}

.image {
    flex: 70%;
    position: absolute;
}

.image img {
    padding: 20px;
    width: 360px;
    height: 350px;
    border-radius: 50px;
}

.text {
    margin-top: 350px;
    position: absolute;
    flex: 30%;
}

.text h1 {
    color: #000;
    text-align: center;
    font-family: sans-serif;
    padding: 20px;
    font-weight: 800;
    font-size: 1.5em;
    line-break: auto;
}

.text p {
    color: #000;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 0px 15px 15px 15px;
    font-weight: 200;
    font-size: 20px;
    line-break: auto;


}

@media (max-width: 375px) {

    .container {
        margin-top: 100px;
        margin: 0;
        width: 320px;
        height: 520px;
        margin: 100px 20px 20px 20px;
    }

    .image img {
        padding: 20px;
        width: 280px;

    }

    .text {
        margin-top: 300px;

    }

    .text h1 {

        padding: 15px;
        font-weight: 600;
        font-size: 1em;

    }

    .text p {

        padding: 10px 10px 10px 10px;
        font-weight: 200;
        font-size: 15px;



    }


}