html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 20px;
    background: #ffffff;
    font-family: "PesteTRIAL-Regular";

}

* {
    box-sizing: border-box;
}

:root {
    --speed: 0.85;
    --primary: rgb(255, 255, 255);
    --size: 16;
    --ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.circular-text {
    position: fixed;
    top: 23%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-size: 28px;
    font-weight: bolder;
    font-family: "PesteTRIAL-Regular";
    transition: 0.5s ease-out;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

.type {
    margin-top: 55em;
    background-color: white;
    z-index: 100;
}

h1 {
    font-family: "PesteTRIAL-Regular";
    font-weight: 100;
    margin-right: 10cm;
    margin-left: 5cm;
    padding-top: 1em;
}

h2 {
    font-family: sans-serif;
    font-weight: 100;
    margin-right: 7cm;
    margin-left: 5cm;
    padding-top: 1em;
    background-color: white;
}

h3 {
    font-family: sans-serif;
    font-weight: 100;
    margin-right: 7cm;
    margin-left: 5cm;
    padding-top: 1em;
}

.circular-text {
    z-index: -10;
}

.menu__toggle {
    opacity: 0;
    position: absolute;
}

.menu__toggle:checked~.menu__content .menu__item {
    --active-x: var(--x);
    --active-y: var(--y);
    --scale: 1;
}

.menu__toggle:checked~.menu__toggle-label:not(.menu__toggle-label--closer) {
    --clip: circle(1000% at 0% 0%);
    height: 150vh;
    width: 100vw;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.menu__toggle:checked~.menu__toggle-label .menu__icon:nth-of-type(1) {
    --scale: 0;
}

.menu__toggle:checked~.menu__toggle-label .menu__icon:nth-of-type(2) {
    --scale: 1;
}

.menu__toggle-label {
    cursor: pointer;
    height: calc(var(--size, 20) * 0.5vmin);
    width: calc(var(--size, 20) * 0.5vmin);
    display: block;
    --clip: circle(100% at 0% 0%);
    -webkit-clip-path: var(--clip);
    clip-path: var(--clip);
    position: absolute;
    top: 0;
    left: 0;
    transition: backdrop-filter calc(var(--speed, 1) * 1s) var(--ease), clip-path 0s, -webkit-clip-path 0s;
}

.menu__toggle-label--closer {
    z-index: 3;
    --scale: 0;
}

.menu__icon {
    --scale: 1;
    height: calc(var(--size, 20) * 0.25vmin);
    width: calc(var(--size, 20) * 0.25vmin);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -70%) scale(var(--scale, 1));
    fill: var(--primary);
    transition: all calc(var(--speed, 1) * 1s) var(--ease);
}

.menu__icon:nth-of-type(2) {
    --scale: 0;
}

.menu__content {
    background:#000000;
    margin: 0;
    display: block;
    list-style-type: none;
    z-index: -1;
    filter: url("#goo");
    position: absolute;
    top: 0;
    height: 0;
    width: 0;
    left: 0;
    z-index: 2;
}

.menu__content:after {
    background: #000000;
    content: '';
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    height: calc(var(--size, 20) * 1vmin);
    width: calc(var(--size, 20) * 1vmin);
    top: 0;
    left: 0;
}

.menu__item {
    background: #000000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    list-style-type: none;
    font-size: 1rem;
    height: calc(var(--size, 20) * 1vmin);
    left: calc(var(--active-x, 0) * 1vw);
    overflow: hidden;
    place-items: center;
    position: absolute;
    text-align: center;
    top: calc(var(--active-y, 0) * 1vh);
    transform: translate(-50%, -50%) scale(var(--scale, 0.75));
    transition: all calc(var(--speed, 1) * 1s) calc(var(--delay, 0) * 1s) var(--ease);
    width: calc(var(--size, 20) * 1vmin);
}

@media (min-width: 768px) {
    .menu__item {
        font-size: 2rem;
    }
}

.menu__item:nth-of-type(1) {
    --delay: 0.1;
    --x: 35;
    --y: 35;
}

.menu__item:nth-of-type(2) {
    --delay: 0.2;
    --x: 65;
    --y: 35;
}

.menu__item:nth-of-type(3) {
    --delay: 0.3;
    --x: 35;
    --y: 65;
}

.menu__item:nth-of-type(4) {
    --delay: 0.4;
    --x: 65;
    --y: 65;
}

.menu__link {
    align-items: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.menu__link:hover {
    text-decoration: underline;
}

