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

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-container {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('images/background-image-two.png') center/cover no-repeat;
  padding-bottom: 10vh;
}

.logo {
  margin-bottom: 2rem;
}

h1 {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  margin-bottom: 2rem;
}

p {
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1400px) {
  h1 {
    font-size: 5rem;
  }

  p {
    font-size: 1.8rem;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 4rem;
  }

  p {
    font-size: 1.8rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;

  }
}