/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #00c6ff, #0072ff); /* Gradiente atractivo */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('cursor1.png'), auto;

}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Añadir una línea sutil en la parte inferior */
}

main {
    padding: 20px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco translúcido */
    border-radius: 10px;
    margin-top: 20px;
}

h1 {
    font-size: 5vw;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2rem;
    margin-top: 20px;
}

ol {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    list-style-type: decimal;
}

li {
    margin-bottom: 10px;
}

code {
    background-color: #e0e0e0;
    padding: 5px;
    border-radius: 3px;
}

/* Estilos para el footer */
footer {
    background: linear-gradient(to bottom, #00c6ff, #0072ff); /* Fondo de gradiente suave similar al header */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2); /* Línea sutil en la parte superior */
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilos para dispositivos móviles */
@media (max-width: 600px) {
    h1 {
        font-size: 8vw;
    }

    main {
        padding: 10px;
    }

    ol {
        padding: 10px;
    }
}

/* Estilos para tabletas */
@media (min-width: 601px) and (max-width: 1024px) {
    h1 {
        font-size: 6vw;
    }
}

/* Estilos para el contenedor del video */
.video-container {
    text-align: center;
    margin-top: 20px;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
}

/* Estilos para el botón */
.btn-inicio {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
    margin-top: 30px;
}

.btn-inicio:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: scale(1.05);
}

.btn-inicio:focus {
    outline: none;
}

.btn-inicio:active {
    background: linear-gradient(135deg, #005cbf, #0056a3);
    transform: scale(1);
}
