:root {
  --background: #00333F;
  --brand-yellow: #DDB907;
  --brand-blue: #004E63;
}
html {
  background-color: var(--background);
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1 {
  /* color: red; */
  font-family: "Alfa Slab One", Georgia, serif;
  font-size: 54px;
  line-height: 1.2;
  text-transform: uppercase;
}
nav {
  padding: 25px 50px;
  max-width: 1440px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-links a {
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 25px;
  font-weight: 300;
  font-size: 12px;
}
.right-links:hover {
  color: var(--brand-yellow);
  transition: 200ms;
}
.button {
  border: 1px solid white;
  padding: 8px 25px;
}
.button--primary:hover {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: white;
}
.button--secondary {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}
.button--secondary:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}
.header {
  margin-top: -75px;
  padding: 60px;
  /* min-height: 600px; */
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;

}
.background-image {
  background-image: url('../images/bg-hero_home.jpg');
}
.title {
  max-width: 860px;
  opacity: 0;
  animation: popIn 2s forwards 0s;
}
.subtitle {
  font-size: 24px;
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  animation: popIn 2s forwards 0.3s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}