:root {
    --background: #121212;
    --foreground: #ffffff;
    --accent: #4fc3f7;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    color: #bbbbbb;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.4);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}
