body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  /* Fondo negro */
  font-family: Arial, sans-serif;
  position: relative;
}

.container {
  text-align: center;
  margin-bottom: 50px;
  /* Espacio para el footer */
}

.logo {
  width: 200px;
  /* Ajusta el tamaño según sea necesario */
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 10px 0;
}

.footer-logo {
  width: 150px;
  /* Ajusta el tamaño según sea necesario */
}

.title {
  color: white;
  /* Color del título en blanco */
  font-size: 24px;
  margin-top: 20px;
  font-weight: bold;
}

a.footer-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
