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

#home{
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgb(249, 245, 239);
  
}

#home-content {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.211);
}

#brand-name {
  margin-top: -4rem;
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 5rem;
  color: white;
}

#brand-type {
  margin-top: -1.5rem;
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
  color: white;
  margin-bottom: 2rem;
}

#coming-soon {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.booking-call {
  text-decoration: none;
  color: rgb(249, 245, 239);
  font-size: 2rem;
}

@media screen and (max-device-width: 841px) {
  #coming-soon {
    font-size: 1.3rem;
  }
  .booking-call {
    font-size: 1.4rem;
  }
  #home-content {
    padding-bottom: -10rem;
  }
  #brand-name {
    font-size: 3.5rem;
  }
  #brand-type{
    font-size: 1.3rem;
    margin-top: -0.5rem;
  }
}
