* {
  text-align: center;
  color: white;
  font-family: 'Roboto', sans-serif;
} 

body, html {
  height: 100%;
  background-color: black;
}

.hero-image {
  background-image: url("hero.webp");
  height: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 6em;
  margin-top: 1.5vw;
  margin-bottom: 1.5vw;
}
h2 {
  font-size: 2.5em;
}
h3 {
  font-size: 1.5em;
}

nav {
  padding: 15px 0;
  display: flex;
  justify-content: space-evenly;
}

a {
  text-decoration: none;
  font-size: 1.2em;
  letter-spacing: 1px;
}

a:hover {
  color: #ccc;
}
