body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #E5E5E5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Noto Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 540px;
  height: 648px;
  background-color: #FFFFFF;
  color: #4A4A4A;
  border-radius: 20px;
  border: 2px solid #C4C4C4;
}
.content {
  padding: 0 40px 0 40px;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block
}

ul > li {
  display: inline-flex;
  font-size: 0.875em;
  line-height: 19px;
}

ul > li:before {
  content: "-";
  text-indent: -5px hanging;
  margin-right: 5px;

}

a {
  color: #72C3B2;
}
footer a {
  text-decoration: none;
  font-size: 0.855em;
  line-height: 1em;
}

footer a:first-child {
  margin-right: 10px;
}

p {
  font-size: 0.875em;
  line-height: 1.4em;
}

.divider {
  background-color: #72C3B2;
  width: 87px;
  height: 5px;;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin-bottom: -20px;
  margin-top: 30px;
}

h1 {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.4em;
}

.logo {
  height: 50px;
  width: 50px;
}

.apsis-cube-1 {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.apsis-cube-2 {
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (min-height: 1600px) and (min-width: 1800px) {
  section {
    height: 1300px;
    width: 1000px;
  }
  header {
    margin-bottom: -2em;
    margin-top: 2em;
  }

  h1 {
    font-size: 2em;
    line-height: 2em;
    margin-top: 2em;
  }

  p, ul > li {
    font-size: 1.5em;
    line-height: 1.8em;
  }

  footer a {
    font-size: 1em;
    line-height: 1.3em;
  }

  .content {
    padding: 0 60px 0 60px;
  }
  .logo {
    height: 100px;
    width: 100px;
  }
}
@media only screen and (max-height: 648px) {
  body{
    height: 100%;
  }
}
@media only screen and (max-width: 550px) {
  body{
    height: 100vh;
  }
  section {
    width: 100%;
    height: 80%;
  }

  header {
    margin-bottom: -0.6em;
    margin-top: 0.75em;
  }

  h1 {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0.75em;
  }

  p, ul > li {
    font-size: 0.8em;
    line-height: 1.3em;
  }

  footer a {
    font-size: 0.7em;
    line-height: 1em;
  }

  .content {
    padding: 0 20px 0 20px;
  }
  .logo {
    height: 40px;
    width: 40px;
  }
}
@media only screen and (max-width: 365px) {
  section {
    width: 100%;
    height: 80%;
  }

  header {
    margin-bottom: 0;
    margin-top: 0.5em;
  }

  h1 {
    font-size: 1.2em;
    line-height: 1.2em;
    margin-top: 0.5em;
  }

  p, ul > li {
    font-size: 0.7em;
    line-height: 1.2em;
  }

  footer a {
    font-size: 0.6em;
    line-height: 0.9em;
  }

  .content {
    padding: 0 20px 0 20px;
  }
  .logo {
    height: 35px;
    width: 35px;
  }
}