html {
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none
}

html::-webkit-scrollbar {
    display: none
}

.page {
    height: 100vh;
    scroll-snap-align: center;
    align-items: center;
    cursor: none;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;
    justify-content: center;
    flex-direction: row
}

body {
    background: #121212;
    color: #ccc;
    width: 100vw;
    overflow: hidden;
    scroll-snap-type: y mandatory;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.centered-content {
    text-align: center
}

nav {
    margin-bottom: 1em
}

.mono {
    font-family: monospace
}

.name {
    color: #eee;
    font-size: 5em;
    line-height: 1.5em;
    margin: .2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bottom {
    position: absolute;
    bottom: 1em
}

.arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

p {
    line-height: 1.5em;
    margin: .2em;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.icon {
    padding: none;
    margin: none;
    border: none;
    position: relative;
    height: 40px;
    width: 40px;
    --translateX: 0;
    --translateY: 0
}

.btn {
    background: #fff0;
    border-radius: 1em;
    transition-property: background;
    transition-duration: .1s;
    transition-timing-function: ease-out
}

.btn:hover {
    background: #ffffff00
}

#arrow {
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-property: opacity, transform;
    transform: translate(0, var(--moveY)) rotate(var(--rot));
    --moveY: 0;
    --rot: 0
}

a {
    font-size: 1.2em;
    color: #fff;
    cursor: none;
    display: inline-block;
    padding: .5em .7em .6em;
    position: relative;
    text-decoration: none;
    transform: translate(var(--translateX), var(--translateY)) scale(var(--scale));
    transition-duration: .1s;
    transition-timing-function: ease-out;
    transition-property: opacity, transform;
    z-index: 1;
    --scale: 1;
    --translateX: 0;
    --translateY: 0
}

a:not(:hover) {
    transition-property: transform, opacity
}

a:active {
    opacity: .5;
    transform: translate(var(--translateX), var(--translateY)) scale(1)
}

.cursor {
    height: var(--height);
    left: var(--left);
    pointer-events: none;
    top: var(--top);
    transform: translate(-50%, -50%) scale(var(--scale));
    transition-property: width, height;
    width: var(--width);
    --top: -1em;
    --left: -1em;
    --width: 15px;
    --height: 15px;
    --scale: 1;
    --translateX: 0;
    --translateY: 0
}

.cursor.is-locked {
    transition-property: width, height, left, top
}

.cursor.is-locked .cursor__content {
    opacity: .1
}

.cursor, .cursor__content {
    position: fixed;
    transition-duration: .1s;
    transition-timing-function: ease-out
}

.cursor__content {
    border-radius: 1em;
    background-color: #fff;
    bottom: 0;
    left: 0;
    opacity: .4;
    right: 0;
    top: 0;
    transform: translate(var(--translateX), var(--translateY));
    transition-property: "opacity"
}
