* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: montserrat;
}

body {
    background: #00b6c4;

}

.container {
    background: white;
    max-width: 800px;
    margin: 60px auto;
    height: 1250px;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header {
    text-align: center;
}

.header h1 {
    margin-bottom: 10px;
}

.header h3 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.image-area {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 25px auto;
    border: 15px groove rgb(11, 175, 229);

}

.image-area img {
    width: 100%;

}

.main {
    display: flex;
    flex-wrap: wrap;
}

.left {
    flex: 1;
    padding: 30px;

}

.left p {
    line-height: 2;
}

.left ul li {
    line-height: 2;
}

h2 {
    background: #00b6c4;
    padding: 15px;
    color: #fff;
    margin: 30px 0;
    font-size: 20px;
    border-radius: 0 50px 50px 0;
}

.right {
    flex: 1;
    padding: 30px;
}

.right {
    line-height: 2, 9;
}

.right h3 {
    margin-bottom: 15px;

}

.right ul li {
    line-height: 2;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .container {
        width: 95%;
    }

    h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .main {
        flex-direction: column;
    }

    .left,
    .right {
        flex: none;
        width: 100%;
    }

    .container {
        width: 95%;
        height: auto;
    }

    h2 {
        font-size: 15px;

    }
}