*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.welcome-text {
    font-size: 2em;
    color: #2c3e50;
    margin: 20px 0;
    text-align: center;
    animation: fadeIn 3s infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery {
    margin-left: 20%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.video-container {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

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

video {
    width: 100%;
    height: 200px; /* Ajusta la altura según sea necesario */
    border-radius: 5px;
}

p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 500px) {
    .welcome-text {
        font-size: 1.5em;
        margin-right: 10px;
    }

    .video-container {
        margin: 10px 0;
        margin-right: 10px;
    }
}
