main {
  font-family: 'Roboto';
  font-style: normal;
  font-kerning: none;
  text-decoration: none;
  text-wrap: wrap;
  overflow-wrap: normal;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: fit-content;
  width: fit-content;
}
section#hero {
  flex-direction: row;
  gap: 50px;
  background-color:#c8a6dd;
  padding: 20px;
}
.coming-soon {
  margin: 5px 0 5px 0;
}
.hero-image-div {

}
.hero-image {
  position: relative;
  max-width: 1024px;
  object-fit: fill;
  pointer-events: none;
}
.hero-title-div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.hero-title {
  font-family: Roboto;
  font-size: 64px;
  margin: 5px 0 5px 0;
}
@media only screen and (max-width: 767px) {
  section#hero {
    flex-direction: column;
    gap: 20px;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-title {
    font-size: 32px;
  }
}
