body {
    font-family: 'Minecraftia', monospace;
    background-color: #222;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #4CAF50;
    text-shadow: 2px 2px #000;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #4CAF50;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #3e8e41;
}

.resources-section {
    background-color: #333;
    padding: 40px 0;
}

.resources-section h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 30px;
}

.resource-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-list a {
    display: block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
}

.resource-list a:hover {
    background-color: #555;
}

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}