* {
  margin:0;
}

.hero {
  width: 100%;
  height: 100vh;
  background: url("images/background.jpg") top center;
  background-size: cover;
  position: relative;
}

.hero .hero-container {
  position: absolute;
  display: flex;
  inset: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

.hero h1 {
  margin: 0 0 10px;
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}


