*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body{
    background: #fcedf2;
}

.container{
    background: #fcedf2;
    max-width: 800px;
    margin: 60px auto;
    height: 1350px;
    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;
}

.img-area{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 5% auto;
    border: 15px groove #ffb7c5;
}

.img-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: #ccc2ae;
    padding: 15px;
    color: #000000;
    margin: 30px 0;
    font-size: 20px;
    border-radius: 0 50px 50px 0;
 }

 .right{
    flex: 1;
    padding: 30px;
 }

 .right h3{
    margin-bottom: 15px;
 }

 .right p{
    line-height: 2.9;
 }

 .right ul li{
    line-height: 2;
 }
 
@media only 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;
    }
}