body {
  margin: 0;
  box-sizing: border-box;
  background: linear-gradient(360deg, #024b02, #ffffff, #56ab2f);
  display: flex;
  min-height: 100vh;
}

.about-container {
  max-width: 900px;
  min-height: 450px;
  background-color: #ffffffde;
  margin: auto;
  border: 2px solid #024b02;
  border-radius: 10px;
  padding: 10px;
}

.about-container .nav-bar ul {
  display: flex;
  list-style-type: none;
  justify-content: space-evenly;
}

.about-container .nav-bar ul li a {
  text-decoration: none;
  color: #56ab2f;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #ffffff, #024b02) 1;
  font-size: 20px;
}

.about-container section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
}

.about-container section h2 {
  color: #024b02;
}

.about-container section ul li {
  list-style-type: circle;
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .about-container {
    max-width: 650px;
  }

  .about-container section {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .about-container {
    max-width: 350px;
  }

  .about-container section {
    font-size: 14px;
  }
}
