﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.video-background video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

    .content-overlay h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .content-overlay p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

.btn-start {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

    .btn-start:hover {
        background: rgba(255,255,255,0.3);
    }

    .content-overlay a:hover{
        color:white;
    }


.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ajusta opacidad aquí */
    z-index: -1;
}