.hero-media {
  background-image: url("../img/media-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-media>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-media>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

h2 {
  color: #7b1222;
  font-family: "KorolevBold", Sans-serif;
  font-size: 36px;
  font-weight: 700;
}

p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #1b325f;
  margin-inline: 16px;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-block: 3rem;
}

#downloadButton {
  padding: 10px 20px;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #7b1222;
  color: white;
  cursor: pointer;
  border: none;
}

#downloadButton:hover {
  background-color: white;
  color: #7b1222;
  border: #7b1222 solid 1px;
}
