@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}
a {
  text-decoration: none;
}
.header {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: .5rem 5%;
  z-index: 2;
}
.hero {
  mix-blend-mode: darken;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}
.hero__bg {
  background: url(./img/img-hero.jpg) no-repeat center center;
  height: 100vh;
  mix-blend-mode: darken;
}
.hero__text {
  position: absolute;
  top: 50%;
  margin: 0;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}
.hero__text h1 {
  font-size: 1.5rem;
}
.btn {
  border: 3px solid #fff;
  padding: .5rem 4rem;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
  margin-top: 2rem;
}
.btn:hover {
  border-color: #ae0606;
  color: #ae0606;
}
@media (min-width: 1025px) {
  .hero__text {
    padding: 0 15%;
  }
  .hero__text h1 {
    font-size: 3rem;
  }
  .btn {
    font-size: 1.25rem;
  }
}
