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

body {
    background-color: #f9f9f9;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.svg-container {
    width: 1400px;
}

svg {
    width: 1400px;
    height: 509px;
    display: block;
}

text {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.link {
    fill: #00f;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-skip-ink: none;
}

a:hover .link {
    text-decoration: none;
}

.about {
    fill: #000;
}

canvas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

body.physics-active .svg-container {
    visibility: hidden;
}
