/* Define the custom font */
@font-face {
    font-family: 'CustomFont';
    src: url('fonts/freakyfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}
header {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #000;
}
header img {
    height: 50px; /* Fixed height */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px;
    image-rendering: pixelated;
}
h1 {
    font-size: 2.5em;
    margin: 0;
    font-family: 'CustomFont', sans-serif;
}
.slogan {
    font-size: 1.5em;
    margin-left: auto;
    font-family: 'CustomFont', sans-serif;
}
nav {
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #000;
}
nav a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}
nav a:hover {
    text-decoration: underline;
}
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.game-list {
    list-style-type: none;
    padding: 0;
}
.game-list li {
    background-color: #111;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #fff;
}
footer {
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
    border-top: 3px solid #000;
    margin-top: 20px;
}
footer p {
    margin: 0;
}
.pixel-art {
    text-align: center;
    margin: 20px 0;
}
.pixel-art img {
    width: auto;
    height: 100px;
    image-rendering: pixelated;
    
}
.contributors {
    margin-top: 20px;
}
.contributors ul {
    list-style-type: none;
    padding: 0;
}
.contributors li {
    background-color: #111;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #fff;
}

.contributor-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    image-rendering: pixelated;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    min-height: 100vh;
}

.content {
    flex: 1;
}

footer {
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
    border-top: 3px solid #000;
    margin-top: auto;
}