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

:root {
    --bg: #2b1a11;
    --fg: #dccaa6;
    --accent: #3b6b6b;
    --muted: #c2b292;
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

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

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-top: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
}

h1 span {
    color: var(--accent);
}

p {
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--muted);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/*.status::before {
     content: "";
     width: 6px;
     height: 6px;
     background: var(--accent);
     border-radius: 50%;
 }*/

footer {
    position: fixed;
    bottom: 2rem;
    font-size: 0.7rem;
    color: #dccaa6;
    letter-spacing: 0.1em;
}

menu {
    position: fixed;
    top: 1rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

home {
    position: fixed;
    top: 1rem;
    left: 2rem;
    text-align: center;
    max-width: 480px;
}

.button {
    display: inline-block;

    background: transparent;
    color: var(--fg);

    border: 5px double var(--accent);

    padding: 0.55rem 1.2rem;

    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;

    transition: 0.15s;
}

.button:hover {
    background: rgba(59, 107, 107, 0.15);
    border-color: var(--fg);
}

.button:active {
    transform: translateY(2px);
}
