/* General Styles */

:root {
    --gray: #334455;
    --lightgray: #94a3b8;
    --darkgray: #1e293b;
    --blurple: #5865f2;
    --radius: 8px;
}

* {
    font-family: system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #001122;
    color: #fff;
}

h2 {
    text-align: center;
    color: var(--lightgray);
}

/* Header */

header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--darkgray);
    border-bottom: 1px solid var(--gray);
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

header a {
    text-decoration: none;
    color: white;
}

.backButton {
    margin-left: auto;
    color: var(--lightgray);
    font-size: 1.2em;
    transition: color 0.1s ease;
}

.backButton:hover {
    color: white;
}

/* Responsive Styles */

@media (max-width: 768px) {
    header {
        padding: 10px;
        gap: 5px;
    }

    header h1 {
        font-size: 1.2em;
    }
}
