* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #071D49;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  padding-top: 60px;
}

.section {
  padding-left: 15px;
  padding-top: 100px;
}

.logo {
  max-width: 100%;
  width: 160px;
  margin-right: 15px;
}

.hashtag {
  margin-top: 10px;
  font-size: 1.4em;
  font-weight: 600;
  color: #00C389
}

.section p, .section span {
  font-size: 1.3em;
}

.footer {
  height: 50px;
  background: #00C389;
}

.arrow {
  width: 70px;
  height: 70px;
}

.link-mint {
  color: #00C389;
  text-decoration: none;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .wrapper {
    font-size: 20px;
    padding-top: 100px;
  }

  .section {
    padding-left: 50px;
  }

  .logo {
    width: 250px;
  }
}