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

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  font-family: "Dosis", sans-serif;
  line-height: 1;
  color: #fafafa;
}
.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%;
}

@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%;
  }
}

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