body {
    margin: 0;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    color: #000;

    /* Minecraft Beta dirt background */
    background-image: url("https://i.imgur.com/GgeUx5G.png");
    background-repeat: repeat;
}

/* TOP BAR */
#topbar {
    height: 22px;
    background: #8fb3ff;
    border-bottom: 2px solid #5c84d6;
}

/* HEADER */
#header {
    background: linear-gradient(#8db3ff, #6a96e8);
    text-align: center;
    padding: 24px 0 14px;
    border-bottom: 3px solid #4a73c9;
}

#header h1 {
    font-size: 52px;
    margin: 0;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow:
        2px 2px 0 #3a5fa8,
        4px 4px 0 #2b4c8f;
}

.subtitle {
    color: #e6efff;
    font-size: 13px;
    margin-top: 6px;
}

/* NAV */
#header nav {
    margin-top: 12px;
}
#header nav a {
    margin: 0 8px;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
}
#header nav a:hover {
    text-decoration: underline;
}

/* LAYOUT */
#container {
    width: 900px;
    margin: 14px auto;
    display: flex;
    gap: 10px;
}

#main {
    flex: 1;
}

#right-panel {
    width: 220px;
}

/* BOXES */
.panel-box,
.feature {
    background: #ffffff;
    border: 2px solid #b7b7b7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

/* HERO */
.hero {
    background: linear-gradient(#ffffff, #f2f2f2);
    border: 3px solid #a0a0a0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}
.hero h2 {
    margin-top: 0;
    font-size: 18px;
}

/* FEATURES */
.feature h3 {
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
}
.feature p {
    margin: 4px 0 0;
}

/* COLOR BLOCKS */
.build {
    background: #d9f0d9;
}
.meet {
    background: #fff0c9;
}
.share {
    background: #d9e6ff;
}

/* LISTS */
ul {
    padding-left: 16px;
}
ul li {
    list-style: square;
}

/* LINKS */
a {
    color: #003399;
}
a:hover {
    text-decoration: underline;
}
