@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
}

p {
  margin: 10px 0;
  font-size: 1rem;
}

img {
  width: 100%;
}

video {
  width: 100%;
}

#header-about {
  height: 110px;
}

#about {
  display: flex;
  flex-direction: column;
}

#about h1 {
  margin: 15px 0;
  font-size: 2.3rem;
}

#about h1,
#about h4,
#about p {
  align-self: center;
  text-align: center;
}

#about > p {
  margin: 0 100px;
}

#about ul {
  list-style: square;
}

#about ul li {
  margin-left: 20px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

#about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

#about .container .showcase {
  display: flex;
}

#about .container .showcase .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin-top: 10px;
}

#about .container .showcase .person img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 0 15px;
  transition: transform 0.5s;
  cursor: pointer;
}

#about .container .showcase .person a {
  font-size: 0.85rem;
}

.person img:hover {
  transform: scale(1.1);
}

/* mobile */

@media (max-width: 1080px) {
  #about {
    margin: 0 50px;
  }

  #about > p {
    margin: 0 30px;
  }

  #about > p {
    margin: 0 30px;
  }

  #about .container .showcase .person img {
    height: 150px;
    width: 150px;
    margin: 0 6px;
  }
}

@media (max-width: 768px) {
  #about {
    margin: 0 35px;
  }

  #about h4 {
    margin-top: 25px;
  }

  #about > p {
    margin: 0 30px;
  }

  #about .container .showcase {
    flex-direction: column;
  }

  #about .container .showcase .person img {
    height: 250px;
    width: 250px;
  }
}
@media (max-width: 620px) {
  #about {
    margin: 0 30px;
  }

  #about .container .showcase {
    flex-direction: column;
  }
}
