body {
    margin: 0;
    background-color: #0D0D0D;
    color: #FFFFFF;
    font-family: Inter, Roboto, sans-serif;
}

header {
    background-color: #FFFF00;
    color: #0D0D0D;
    text-align: center;
    padding: 20px;
    font-family: "Press Start 2P", cursive;
}

nav {
    background-color: #FF00FF;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: VT323, monospace;
    font-size: 20px;
    margin: 0;
}

main {
    background-color: #00FFFF;
    color: #0D0D0D;
    padding: 30px;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-family: "Press Start 2P", cursive;
}

.thumbnail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.thumb {
    width: 120px;
    height: 80px;
    background-color: #FFFFFF;
    border: 2px solid #0D0D0D;
    display: inline-block;
}

footer {
    background-color: #FFFF00;
    color: #0D0D0D;
    text-align: center;
    padding: 15px;
    font-family: VT323, monospace;
}

footer a {
    color: #0D0D0D;
    text-decoration: none;
}

@media (max-width: 400px) {
    nav a {
        font-size: 16px;
    }
}