/* Global styling */
body {
    margin: 0;
    padding: 0;
    background: #0b0b0d;
    color: #e6e6e6;
    font-family: "Georgia", "Times New Roman", serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Subtil stjernedis / glød-effekt */
body::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
    animation: drift 18s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.3;
}

/* Minimal bevegelse for atmosfære */
@keyframes drift {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.1) translate(2%, -2%); }
}

/* Sentral tekst */
.center p {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(255,255,255,0.07);
}