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

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

.main-container {
  display: flex;
  flex-direction: column;
  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: 7rem;
  align-self: start;
  padding-top: 2.5rem;
  margin-right: 0;
  margin-left: -0.5rem;
}

.content {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  padding: 0;
}

.button-container {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.button-description {
  text-align: center;
}

.btn-custom {
  background-color: #77D6DD;
  color: #1D3C55;
  border: 0;
  border-radius: 5rem;
  padding: 0.5rem 0;
  width: 10rem;
  transition: all 0.3s;
}

.btn-custom:hover {
  background-color: #9FE4E9;
}

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

  .logo-img {
    align-self: end;
    padding-top: 0;
    margin-right: -0.5rem;
    margin-left: 0;
  }

  .content {
    margin: 0;
    padding-left: 4rem;
  }

  .button-container {
    align-self: start;
    align-items: start;
  }

  .button-description {
    text-align: start;
  }
}
