/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Fondo oscuro */
    color: #e0e0e0; /* Texto claro */
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0d1117, #1f2937);
    color: #64ffda; /* Cian brillante */
    animation: slideIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 0;
}

/* Animations */
@keyframes slideIn {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer Section */
.footer {
    background-color: #0d1117;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer .social-links a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover {
    transform: scale(1.2);
}
/* Botón principal */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #121212; /* Texto oscuro */
    background: #64ffda; /* Cian brillante */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
    background-color: #52d3b9; /* Cian más oscuro */
    transform: scale(1.05);
}