html {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  color: white;
  height: 100%;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  background-image: url('../images/mobile-background.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem;
}

.logo-img {
  width: 6.5rem;
  margin-bottom: auto;
}

.welcome-message {
  text-align: center;
  max-width: 25ch;
  text-wrap: balance;
}

.btn-custom {
  background-color: hsl(200, 100%, 49%);
  color: white;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.7rem 0;
  width: 22rem;
  transition: all 0.3s;
}

.btn-custom:hover {
  background-color: hsl(200, 100%, 55%);
}

@media (min-width: 768px) {
  .main-container {
    background-image: url('../images/tablet-background.png');
    padding: 4rem 2rem;
  }
}


@media (min-width: 1024px) {
  .main-container {
    background-image: url('../images/desktop-background.png');
    justify-content: center;
  }

  .logo-img {
    margin-bottom: 3.5rem;
  }
}
