<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
  overflow-x: hidden;
}
body {
  font-family: "Open Sans", sans-serif;
  background: #000;
  color: #333;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  min-height: 95svh;       /* ocupa toda la altura de la pantalla */
  margin: 0;
}
main {
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  margin: auto;
}
.logo {
  background: #000;
  padding: 0.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.img-flex {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Esta lÃ­nea centra la imagen dentro del div */
}
.card {
  background: #333;
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
  font-weight: 600;
  color: #ececec;
  margin: 0px;
  font-size: 2.5rem;
}
h2 {
  font-weight: 500;
  color: #bebebe;
  margin: 0px;
  font-size: 1rem;
}
p {
  margin: 0px;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 400;
}
.contact-info a {
  display: block;
  margin: 0.5rem 0;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: none;
  color: #ff6600;
}
.contact-info i {
  margin-right: 8px;
  color: #ff3300;
}
.contact-info a:hover i {
  color: #fff;
}
.social-links {
  display: flex;
  gap: 3rem; /* Espacio entre los elementos */
  justify-content: center; /* Opcional: centra horizontalmente */
  align-items: center; /* Opcional: alinea verticalmente */
  font-size: 1.2rem;
  color: #ff3300;
}
.social-links a {
  color: #ff6600;
}
.social-links a:hover {
  color: #fff;
}
.social-links i {
  margin-right: 8px;
  color: #fff;
}
.social-links a:hover i {
  color: #ff6600;
}
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding: 1rem 0;
}
footer a:link {
  color: #ff6600;
}
footer a:hover {
  color: #ff3300;
}
.oculto {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}</pre></body></html>