body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

/* Contenedor del video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenedor del logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30vh 0; /* Espaciado superior e inferior del 10% del viewport */
}

.logo-container img {
    width: 66%;
    height: auto;
}

/* Contenedor de los botones */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.button-container a {
    display: inline-block;
    width: calc(66% * 0.75 / 2 - 7.5px);
    transition: transform 0.3s ease;
}

.button-container img {
    width: 100%;
    height: auto;
    display: block;
}

.button-container a:hover {
    transform: scale(1.05);
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .logo-container {
        margin: 5vh 0; /* Espaciado reducido en mobile */
    }

    .logo-container img {
        width: calc(100% - 20px);
        padding: 0 15px;
        box-sizing: border-box;
    }

    .button-container {
        justify-content: center;
        gap: 5px; /* Reducir espacio entre botones */
    }

    .button-container a {
        width: calc((100% - 20px) * 0.75 / 2 * 2); /* Aumentar tamaño de botones */
    }
}
