body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #262a2b;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.videos {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.videos iframe {
    width: calc(33.33% - 16px);
    aspect-ratio: 16 / 9;
    margin: 16px auto;
}

footer {
    text-align: center;
    margin-top: 20px;
}

footer a img {
    width: 48px;
    margin: 8px;
}

footer a {
    text-decoration: none;
}

footer a img:hover {
    transform: scale(1.1);
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 12px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

