/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: black;
    color: green;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid green;
}

main h1 {
    font-size: 2em;
    font-family: 'Press Start 2P', cursive;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: green;
    text-decoration: none;
    font-size: 1.2em;
}

main {
    padding: 20px;
    text-align: center;
}

section {
    margin: 20px 0;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid green;
    display: inline-block;
    padding-bottom: 5px;
    font-family: 'Press Start 2P', cursive;
}

.nav {
    border-bottom: none;
    margin: 0;
    font-size: 2.5em;
}

footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid green;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: black;
}

/* Centered lists */
ul {
    list-style-position: inside;
    text-align: left; /* Ensures bullets are aligned with the text */
    display: inline-block;
    padding-left: 0;
    margin: 0 auto;
}

.screenshots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshots img {
    margin: 10px;
    width: 300px;
    height: auto;
    border: 2px solid green;
}
