﻿/* Apply font to entire site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive;
}

/* Body */
body {
    background: #6e2a2a;
    color: #fff;
}

body {
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Header */
header {
    text-align: center;
    background: #000f url('images/minecraft-bg.png') no-repeat center/cover;
    padding: 50px 20px;
}

    header .logo {
        width: 120px;
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

.highlight {
    color: #ffd800;
}

/* Navigation */
nav {
    background: #111;
}

    nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 10px 0;
    }

    nav li {
        margin: 0 15px;
    }

    nav a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
    }

        nav a:hover {
            color: #00ff00;
        }

/* Sections */
section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

ul li {
    margin-bottom: 10px;
}

/* Buttons (links and buttons look same) */
.btn, button.btn {
    display: inline-block;
    padding: 15px 25px;
    background: #00ff00;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s;
    border: none;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
}

    .btn:hover, button.btn:hover {
        transform: scale(1.1);
    }

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 0.8rem;
}
