html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Arial', sans-serif;
    background: url('./2.png') no-repeat center center;
  background-size: cover;
  line-height: 1.6;
}

.img-proximamente {
  width: 100%;
  height: auto;
  max-width: 80%; /* ajustá este valor según el diseño */
  display: block;
  margin: 0 auto;
}



footer {
  background-color: #0074a8;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  margin-top: auto;
}

footer p {
  margin: 0.2rem 0;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00bcd4;
}

@media (max-width: 768px) {
  .img-proximamente {
    max-height: 300px;
    object-fit: contain;
  }
}
