body {
    background-image: url('../images/smash-bros-smash.gif');
    background-color: black;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 100px;
    color: white;
}

nav ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: inherit;
}

.logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.logos img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

.logos img:hover {
    opacity: 1;
}

header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 560px;
    height: 315px;
    max-width: 100%;
    border: none;
    border-radius: 8px;
}