body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  font-family: "Dosis", sans-serif;
  line-height: 1;
  color: #0f1113;
}
.image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: aqua; */
}
.main-image {
  height: auto;
  max-width: 100%;
  max-height: 90%;
}

.content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  text-align: center;
  /* background-color: blanchedalmond; */
}

.slogan-container {
  /* flex: 2; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: yellow; */
}

.message {
  font-weight: 100;
  /*font-size: calc(24px + 3vw); */
  font-size: 3.5vw;
}

.brand-container {
  /* flex: 1; */
  /* display: flex; */
  flex-direction: column;
  /* background-color: cadetblue; */
  align-items: center;
  justify-content: center;
}
.brand-image {
  height: auto;
  max-width: 3.5vw;
}
.brand-text {
  font-weight: 500;
  font-size: calc(10px + 2vw);
}

.badge-container {
  /* flex: 1; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* background-color: aqua; */
}
.store-button-image {
  height: auto;
  max-width: 20%;
}

.apple-badge-container {
  /* flex: 1; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* background-color: yellow; */
}
.apple-store-button-image {
  height: auto;
  max-width: 40%;
}

.contact-text {
  color: #000; /* Black color for "For contact" */
  margin-right: 5px; /* Optional: Adds some space between the text and the link */
}

.contact-link-container {
  text-align: center;
  margin-top: 20px;
}

.contact-link-container a {
  color: #007bff; /* Bootstrap default link color */
  text-decoration: none;
  font-size: calc(10px + 1vw); /* Adjust the font size as needed */
}

.contact-link-container a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }

  .image-container {
    height: 100%;
  }
  .store-button-image {
    height: auto;
    max-width: 30%;
  }
  .message {
    font-weight: 100;
    font-size: calc(24px + 3vw);
  }
  .content-container {
    padding: 20px;
    justify-content: flex-start;
    height: 100%;
  }

  .contact-link-container a {
    color: #007bff; /* Bootstrap default link color */
    text-decoration: none;
    font-size: calc(10px + 2vw); /* Adjust the font size as needed */
  }
}

@media (max-width: 768px) {
  .store-button-image {
    max-width: 30vw;
  }
  .brand-image {
    max-width: 6.5vw;
  }
}
