/*********** General Styles ***********/
html, body {
  height: 100%;
  margin: 0;
}

/*********** Navbar Styles ***********/
.navbar {
  border-bottom: 3px solid #ccc;
}

/*********** Menu and Link Styles ***********/
.menu a {
  font-weight: bold;
}

.menu a:hover {
  font-size: 1.1rem;
  background-color: blue;
  color: white;
  font-weight: bold;
}

/*********** Footer Styles ***********/
.footer {
  position: relative;  
  width: 100%;
  background-color:  #343a40;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
}

.footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-creador {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 0px;
}

/*********** Background Image Styles ***********/
.fondo-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

/*********** Form and Container Styles ***********/
.container {
  min-height: 100vh;
  display: flexbox;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

