/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --bg-color: #0b0011;
    --text-color: #f5f5f5;
    --bg-panel: rgba(0, 0, 0, 0.3);
    --accent: #800dad;
    --accent-soft: rgba(128, 13, 173, 0.3);

    --font-mono: "JetBrains Mono", "Maple Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Base */
html, body {
    height: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    width: 90%;
    max-width: 1080px;
    height: 80%;
    max-height: 500px;
    background-color: var(--bg-panel);
    border-radius: 18px;
    padding: 2.625rem 3rem;
    box-shadow: 
        0 0 60px rgba(0, 0, 0, 0.8),
        0 0 30px var(--accent-soft);
    border: 1.5px solid var(--accent-soft);
    display: flex;
    flex-direction: column;
}
