body {
  font-family: "Oswald", sans-serif;
  background-color: #000000;
}
.hero-header {
  position: relative;
  height: 100vh;
  background: url("./imgs/imagen_fromWordpress1.jpg")
    top center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-header .content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
}

nav .nav-item, .navbar-brand {
    letter-spacing: .05em;
    text-transform: uppercase;
}

nav a.nav-link {
  color: #333;
}
section {
  padding: 60px 0;
}
.gallery img {
  width: 100%;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}
footer {
  background-color: #343a40;
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-size: small !important;
}
