html, body {
    height: 100%;
    margin: 0;
}

body {
    background: #0b0b0b;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
}

#root.animate {
    overflow: hidden;
}

.logo-container {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 9999;
    pointer-events: none;
}

.logo-container.animate {
    background: rgba(0, 0, 0, 0.94);
}

.apptaura-logo {
    width: min(90%, 100%);
    max-width: 100%;
    transform-origin: center;
    height: 100%;
    visibility: hidden;
}

#mark path,
#word path {
    fill: transparent;
    stroke: #ce5e4f;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 64px 24px;
    text-align: center;
}

#overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#word {
    opacity: 0;
}
