* {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  /* Отключаем прокрутку для всего документа */
  overflow: hidden;
  /* Фиксируем body, чтобы предотвратить "съезжание" страницы */
  position: fixed;
  /* Растягиваем на всю ширину и высоту, чтобы содержимое не сжималось */
  width: 100%;
  height: 100%;
  /* Убираем возможные отступы по умолчанию */
  margin: 0;
  padding: 0;
}

body {
    background-color: #000000;
}

.cube {
    position: absolute;
    aspect-ratio: 1 / 1;
    background-color: rgb(255, 255, 255);
    opacity: 0.2;
    width: 20px;
    border-radius: 2px;

    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 20px #ffffffbf;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;

    pointer-events: none;
}

main {
    position: absolute;
    left: 0;
    top: 0;

    height: 100vh;
    width: 100vw;
    color: aliceblue;

    pointer-events: none;
}

button {
    position: relative;
}

#lyrics {
    font-weight: bold;
    font-size: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.letter {
    display: block;
    text-shadow: 0 0 20px currentColor
}
.letters {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.cols {
    position: absolute;
    background-color: transparent;
        box-shadow: 0 0 40px #ffffff8c;

    aspect-ratio: 1 / 1;
    border-radius: 50%;

    top: 50vh;
    left: 50vw;
    transform: translateY(-50%) translateX(-50%);

    z-index: 1;
}
