/* Estilos básicos para la página */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background-color: #fff;
    color: #333;
}

/* Logo */
.logo img {
    max-width: 650px; /* Tamaño del logo */
    height: auto;
    margin-bottom: 20px;
}

/* Contenedor del contenido */
.content {
    padding: 20px;
}

/* Botón */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #0056b3;
}

/* Información de contacto */
.contact-info {
    margin-top: 20px;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Redes sociales */
.social-links a {
    margin: 0 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 18px;
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}
footer a {
    color: #007BFF;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    .logo img {
        max-width: 120px; /* Logo más pequeño en móviles */
    }

    .content {
        padding: 10px;
    }
}
