body {
  background-color: #f8f9fa;
  background-image: url('../background.webp');
  background-size: cover;
  background-attachment: fixed;
  padding-top: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  margin-bottom: 0;
}

.navbar-brand {
  font-size: 1.5em;
  font-weight: bold;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.2em;
}

.container {
  margin-top: 20px;
  flex: 1;
}

h1.my-4 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

#fiestasList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.5em;
  font-weight: bold;
}

.card-text {
  font-size: 1.2em;
  color: #6c757d;
}

.pagination {
  margin-top: 20px;
}

.page-item .page-link {
  color: #007bff;
}

.page-item.active .page-link {
  background-color: #007bff;
  border-color: #007bff;
}

.alert {
  margin-top: 20px;
}

.footer {
  background-color: #343a40;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
}

html, body {
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}
