body {
    background-color: #7CBB63; /* Green background, reminiscent of Minecraft grass blocks */
    font-family: 'Press Start 2P', cursive; /* Pixelated font similar to Minecraft's */
    color: #FFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, nav, main, section, footer {
    text-align: center;
    margin: 20px;
}

h1, h2 {
    font-size: 24px;
}

p {
    font-size: 16px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #FFF;
    text-decoration: none;
    background-color: #555;
    padding: 5px 10px;
    border-radius: 5px;
}

a:hover {
    background-color: #333;
}





footer {
    font-size: 14px;
    margin-top: 20px;
}

/* Add your own path to a pixelated font if 'Press Start 2P' is not available */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
