body, html {
  padding: 0;
  margin: 0;
  font-family: "Gotham", arial;
}

@font-face {
  font-family: "GothamNormal";
  src: url("../fonts/GothamMedium.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.otf");
  font-weight: bold;
}

.contentWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: white;
  min-width: 100vw;
  min-height: 100vh;
}

.content {
  margin-top: 1em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50em;
  min-height: 70vh;
  border-radius: 1em;
  background: #12024e;
  background: linear-gradient(138deg, #12024e 23%, #3fb7b6 100%);
  color: whitesmoke;
  overflow-x: hidden;
}

.content section:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.content section:first-of-type article {
  margin-left: 3em;
  -webkit-transform: translateY(4.24em);
          transform: translateY(4.24em);
}

.content section:first-of-type article img {
  width: 2em;
}

.content article:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.content article:first-of-type img {
  width: 6em;
}

.content article:nth-of-type(2) {
  margin: -1em;
}

.content article:nth-of-type(2) h1 {
  font-size: 3em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  text-align: center;
}

.content article:nth-of-type(3) video {
  width: 100%;
  margin-bottom: 2em;
}

.content article:last-of-type p {
  font-size: 1.1em;
  font-family: "GothamNormal";
  line-height: 2.7;
  padding-left: 2em;
  padding-right: 2em;
  text-align: center;
  padding-bottom: 0.3em;
  white-space: normal;
}

.content article:last-of-type p:last-of-type {
  margin-bottom: 5rem;
}

.content {
  -webkit-animation: fade-in 1.3s ease-in-out;
          animation: fade-in 1.3s ease-in-out;
}

@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(-4em);
            transform: translateY(-4em);
  }
  100% {
    -webkit-transform: translateY(0em);
            transform: translateY(0em);
  }
}

@keyframes fade-in {
  0% {
    -webkit-transform: translateY(-4em);
            transform: translateY(-4em);
  }
  100% {
    -webkit-transform: translateY(0em);
            transform: translateY(0em);
  }
}

@media screen and (max-width: 918px) {
  .content {
    font-size: 0.9em;
    min-height: 80vh;
  }
}

@media screen and (max-width: 500px) {
  .content {
    min-height: 85vh;
  }
  .content article:nth-of-type(2) h1 {
    font-size: 1.6em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 2em;
  }
}
/*# sourceMappingURL=style.css.map */