body {
  margin: auto;
  width: 640px; 
  padding: 50px;
  padding-bottom: 60px; /* espacio para que el contenido no quede oculto bajo el footer */
  font-family: 'Arial', sans-serif; 
  color: #727272;    
  text-align: center;
}

.container {
  height: 600px;
  position: relative;
  border: 3px solid #727272;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container img {
  max-width: 100%;
  height: auto;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

h2 {
  font-size: 1.5rem;
  margin-top: 10px;
}

p {
  font-size: 1rem;
  margin: 10px 0;
}

.link {
  color: #F1051D;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

a.link:hover {
  text-decoration: underline;
}

/* Footer fijo abajo */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
  background-color: #fff; /* fondo para que no se vea encima del contenido */
}

/* Responsivo */
@media (max-width: 768px) {
  body {
    width: 80%;
    padding: 20px;
  }

  .container {
    height: auto;
    border: none;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.85rem;
  }
}
