*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:montserrat;
}


body{
    background: #00b6c4;

}

.container{
    background: #f5f5f5;
    max-width: 800px;
    margin: 60px auto;
    height: 1500px;
    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 deepskyblue;
}
.img-area img{
    width: 100%;
}

.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;
}
.rigth{
    flex: 1;
    padding: 30px;
}
.rigth P{
    line-height: 2;
}
.rigth ul li{
    
    line-height: 2;
}


@media only screen and(min-width: 768px) and (max-width:991px){
    .container{
        width: 95%;
        height: auto;
    }
    h2{
        font-size: 18px;
    }
}

@media screen and(max-width:600px){
    .main{
        flex-direction: column;
    }
    .left,
    .rigth{
        flex: none;
        width: 100%;
    }
    .container{
        width: 95%;
        height: auto;

    }
    h2{
        font-size: 15px;
    }
    
}
