#nav-toggle {
  cursor: pointer;
  height: 11.5px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.2s ease;
  width: 28px;
  z-index: 100;
}
@media screen and (min-width: 550px) {
  #nav-toggle {
    display: none;
  }
}

#nav-toggle span {
  background: #111;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.2s ease;
  width: 100%;
}
#nav-toggle span:nth-child(1) {
  margin-top: -2px;
}
#nav-toggle span:nth-child(2), #nav-toggle span:nth-child(3) {
  margin-top: 4.75px;
}
#nav-toggle span:nth-child(4) {
  margin-top: 11.5px;
}

#nav-toggle.is-open span {
  background: #fff !important;
}
#nav-toggle.is-open span:nth-child(1),
#nav-toggle.is-open span:nth-child(4) {
  margin-top: 3.75px;
  width: 0%;
  left: 50%;
}
#nav-toggle.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#nav-toggle.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main {
  padding-top: 100px;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-content {
  padding: 0 20px;
  text-align: left;
}
@media screen and (min-width: 550px) {
  .about-content {
    padding: 0 40px;
  }
}
@media screen and (min-width: 960px) {
  .about-content {
    max-width: calc(800px + 3vw);
  }
}
.about-content p {
  margin: 0;
  padding: 0;
  font-size: 1.6em;
}
.about-content strong {
  background-image: linear-gradient(-68deg, #fff134, #ffdd6f);
  font-family: "Inter";
  padding: 0px 4px 2px 4px;
}