* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
body {
  background: #000080;
}
.container {
  background: #f5f5f5;
  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;
}
.img-area {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 25px auto;
  border: 15px groove deepskyblue;
}
.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: #000080;
  padding: 15px;
  color: #fff;
  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;
}

/* FOOTER */

.footer {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
  padding-top: 30px;
  color: #000;
  background: #fff;
}
.footer h1 {
  margin-bottom: 10px;
}
.footer h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
}

@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,
  .right {
    flex: none;
    width: 100%;
  }
  .container {
    width: 95%;
    height: auto;
  }
  h2 {
    font-size: 15px;
  }
}
