* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Para evitar scroll */
}


/* Video de fondo */
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Video detrás del contenido */
    object-fit: cover; /* Ajusta el video para cubrir todo el fondo */
    filter: brightness(0.9); /* Oscurecer el video si es necesario */
}


.container {
    text-align: center;
    position: relative;
    z-index: 1; /* Asegura que el contenido esté sobre el video */
}
.container h1, h2 {
    text-transform: uppercase;
    font-family: system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 10px;
}


h1 {
    font-size: 100px;
    
}
h2 {
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    margin-bottom: 40px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(44, 44, 44, 0.5);
    border-radius: 10px;
    
}

.category {
    text-align: center;
}

.category img {
    width: 60px;
    margin-bottom: 10px;
}

footer {
    margin-top: 40px;
}

footer a img {
    width: 30px;
    margin: 0 10px;
}

footer a {
    text-decoration: none;
}

footer p {
    margin-top: 20px;
    font-family: sans-serif; 
    
}
