.hero {
  position: relative;
  color: white;
  padding: 100px 0;
  text-align: center;
  background: url("../../assets/img/hero-cover.jpg") no-repeat center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgb(0,0,0) 62%, rgba(67,140,177,1) 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.xp-badge {
  background-color: #ffffff22;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
}

.places-badge {
  background-color: var(--bs-form-invalid-border-color);
  border-radius: 50px;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
}

footer {
  background-color: #132F75;
  color: white;
  padding: 20px 0;
  text-align: center;
}

