body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    cursor: default;
}

.center {
    text-align: center;
}

.text {
    color: white;
    opacity: .5;
    font-size: calc(8vh); /* 1/8 der Höhe des sichtbaren Bereichs */
    font-family: tahoma, sans-serif; /* serifenlos */
    font-weight: 600;
    transition: .5s ease-in-out;
}
.text .dot {
    color: #736AFF;
}
.text .one {
    opacity: .4;
}

.glow {
    text-shadow: 0 0 50px white;
    opacity: 1;
}
