:root {
    --accent: #ff4d4d;
    --dot-color: #ffffff;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Comfortaa', Arial, sans-serif;
    background: #000000;
    color: #fff;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.title-wrap {
    position: relative;
    display: inline-block;
}

.site-title {
    position: relative;
    z-index: 2
}

/* readable utility classes */
.char {
    font-weight: 700;
}

.char.accent {
    color: var(--accent);
}

.char.dot {
    color: var(--dot-color);
}

/* semantic title class */
.site-title {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: 0.02em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.85), 0 4px 12px rgba(0, 0, 0, 0.6);
}


/* focus-visible for accessibility */
:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

h1 {
    text-align: center;
    margin: 0
}

/* water reflection */
/* reflection removed */