* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.img_container {
    display: flex;
    justify-content: center;
}

.logo {
    height: 20%;
    width: 20%;
}

.message_container {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 15px;
    height: 300px;
    background-color: red;
}

.message_container h1 {
    color: white;
    font-size: 25px;
}

.message_container p {
    color: white;
    font-size: 12px;
}

.contacto {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.contacto h2 {
    color: red;
    font-size: 15px;
}

.contacto button {
    width: 150px;
    height: 50px;
    border-radius: 50px;
    background-color: red;
    border: none;
}

.contacto button a {
    text-decoration: none;
    color: white;
}

.footer_container {
  margin-top: 15PX;       /* empuja el footer al final */
  width: 100%;
  background-color: #000000;
  padding: 30px 0;
  border-top: 0.5px solid #afafb0;

  display: flex;          /* convierte footer en flex */
  justify-content: center;/* centra verticalmente si hay más altura */
  align-items: center;    /* centra horizontalmente los logos */
  flex-direction: column; /* contenido apilado verticalmente */
}

.vian_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.logo_vian {
  width: 20px;
  height: auto;
  opacity: 0.9;
}

@media (min-width: 768px) {
    .logo_vian {
        width: 100px;   /* un poquito más grande en desktop */
        height: auto;
    }
}
