body {
  background-color: #0f0f0f;
  color: white;
  font-family: "Poppins", sans-serif;
}

.text-justify {
  text-align: justify;
}

.navbar {
  background-color: #0d0d0d;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  color: gold !important;
  font-size: 1.5rem;
}

.nav-link {
  color: #ddd !important;
}

.nav-link:hover {
  color: gold !important;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9");
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  color: gold;
  font-size: 3rem;
}

.img-style {
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.main {
  margin-left: 250px !important;
}
@media (max-width: 1200px) {
  .main {
    margin-left: 220px !important;
  }
}
@media (max-width: 1100px) {
  .main {
    margin-left: 200px !important;
  }
}
@media (max-width: 1000px) {
  .main {
    margin-left: 180px !important;
  }
}
@media (max-width: 768px) {
  .main {
    margin-left: 200px !important;
  }
}

footer {
  background: #000;
  padding: 20px;
  text-align: center;
  color: #aaa;
  margin-top: 40px;
}

.btn-gold {
  background: gold;
  color: black;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.btn-gold:hover {
  background: #d4af37;
}

.btn-red {
  background: rgb(234, 40, 10);
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.btn-red:hover {
  background: #e25050;
}

.error {
  display: block;
  color: #ff0000;
}
