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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: flex;
  height: 100vh;
}
.hero__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 5rem;
  background-color: #201f1d;
  color: #f9f9f6;
}
.hero__content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #fff;
}
.hero__logo {
  margin-left: -1.5rem;
  margin-bottom: 5rem;
}
.hero__link {
  color: #be860f !important;
  font-size: 1rem;
  text-decoration: underline;
}
.hero__link:visited, .hero__link:hover, .hero__link:active {
  color: #be860f !important;
}
.hero__image {
  flex: 0 0 50%;
  background: url("Innova_Diagonal-Background.webp") center/cover no-repeat;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero__content {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__image {
    flex: 1;
  }
}
