/* Configuración General */
body {
    background-color: #000000; /* Fondo negro como el logo */
    color: #FFFFFF; /* Texto blanco */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

/* Estilo del Logotipo */
.logo {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
}

/* Descripción */
.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic; /* Siguiendo el estilo inclinado del logo */
}

/* Botón de Llamado a la Acción (CTA) */
.cta-button {
    background-color: #ccff00; /* Color Verde Lima del rayo en el logo */
    color: #000000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif; /* Tipografía tecnológica/deportiva */
    border-radius: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}