body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: serif;
}

.hero-main {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}

.hero-title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 10%;
  font-size: 4vw;
  font-weight: bold;
}

.hero-title a {
  text-decoration: none;
  color: inherit;
}

.copyright {
  position: absolute;
  z-index: 10;
  bottom: 5%;
  right: 5%;
  font-family: sans-serif;
  font-size: 12px;
  color: white;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 6vw;
  }
}
