
body {
  background-color: black;
}

.home {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem;
  height: 90vh;
  background: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  max-width: 100vw;
  z-index: -10;
}

.home-data {
  background: linear-gradient(#000000a1, #00000025), url(https://images.unsplash.com/photo-1628527304948-06157ee3c8a6?auto=format&fit=crop&q=80&w=2070&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-size: cover;
  max-width: 100%;
  overflow: hidden;
}

.home .illustration .logo {
  width: 8rem;
  filter: brightness(0.5);
}

.home .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 900px;
}

.home .content .text-head {
  text-transform: uppercase;
  padding-bottom: 1rem;
  color: #fff;
  font-size: 3.0em;
  font-weight: 100;
}

.home .content .text-title {
  padding-bottom: 2rem;
  font-size: 2.5em;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.home .content p {
  padding-bottom: 2rem;
  font-size: 1.3em;
  color: white;
  font-weight: normal;
  text-align: start;
}

.home .illustration .singpay .blue {
  font-size: 2.0em;
  font-weight: bold;
  color: #032E3C;
}

.home .illustration .singpay .yellow {
  font-size: 2.0em;
  font-weight: bold;
  color: #CBC600;
}

@media (max-width: 700px) {
  .home .illustration {
    display: none;
  }

  .home .content .text-head {
    font-size: 1.5em;
  }

  .home .content .text-title {
    font-size: 1.7em;
  }

  .home .content p {
    font-size: 1.0em;
  }
}