@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0f2027; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #2c5364, #203a43, #0f2027); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #2c5364,
    #203a43,
    #0f2027
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

section:nth-child(1) {
  color: #ffffff;
}

section:nth-child(2) {
  color: #203a43;
  background: #ece9e6; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ffffff, #ece9e6); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ece9e6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

section:nth-child(3) {
  color: #ffffff;
}

section:nth-child(3) .cards {
  color: #ffffff;
}

section:nth-child(3) .cards .text-card {
  background: #203a43;
}

section:nth-child(3) .cards .text-card p {
  padding-top: 5px;
}

section:nth-child(4) {
  color: #203a43;
  background: #ece9e6; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ffffff, #ece9e6); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ece9e6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

section:nth-child(4) .cards .text-card {
  background: #ece9e6;
}

section:nth-child(5) {
  color: #ffffff;
}
section:nth-child(5) .cards {
  color: #ffffff;
}

section:nth-child(5) .cards .text-card {
  background: #203a43;
}

section:nth-child(5) .cards .text-card p {
  padding-top: 5px;
}

section:nth-child(6) {
  color: #203a43;
  background: #ece9e6; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ffffff, #ece9e6); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ece9e6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

section:nth-child(6) .cards {
  flex-direction: column;
  color: #203a43;
}


section:nth-child(7) {
  color: #ffffff;
}

section .container {
  margin: 100px;
}

section h1 {
  font-size: 60px;
  text-align: center;
}

.subtitle {
  font-size: 30px;
  margin-bottom: 30px;
}

section h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}

section h6 {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}

section h6 a {
  text-decoration: none;
  color: white;
}

section p.flavor {
	text-align: center;
	padding-top: 20px;
}

section img {
  margin: 20px 20px 0 20px;
}

section img.logo {
  margin: 0;
}

section .cards {
  display: flex;
}

section .cards .text-card {
  background: #ffffff;
  margin: 20px;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}
section .cards .text-card p {
  padding-top: 10px;
}

section .cards .text-card h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 40px;
  }
  .subtitle {
    font-size: 20px;
  }

  section .cards {
    flex-direction: column;
  }
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}
