@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
html {
    background-color: black;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 50px 0px rgb(39, 37, 37) inset;
    font-family: Inconsolata, Arial, Helvetica, sans-serif;
    color: white;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow: hidden;
    height: 100%;
}

main {
    position: fixed;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
}

.bar {
    display: flex;
    justify-content: center;
    margin: auto;
}

.name {
    display: inline-block;
    text-align: center;
    color: white;
    font-size: 10rem;
    font-family: Inconsolata, Arial, Helvetica, sans-serif; 
    transform: translateY(-50%);
    z-index: 10;
    padding-right: 15px;
}

.anywhere {
    position: fixed;
    color: white;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    align-content: center;
    cursor: pointer;
    padding-top: 50px;
}

.blinker {
    font-size: 1.5rem;
    animation-name: blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

@keyframes blink {
    0% {opacity: 100%; font-size: 1.5em;}
    50% {opacity: 50%; font-size: 1.25em;}
    100% {opacity: 100%; font-size: 1.5em;}
}

.pressed {
    font-weight: 700;
    animation-play-state: paused;
}

.fade-out {
    animation-name: fade;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

.fade-in {
    animation-name: fade;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: reverse;
}

@keyframes fade {
    from {opacity: 100%; pointer-events: all; display: block;}
    to { opacity: 0%; pointer-events: none; display: none;}
}

.light-up {
    animation-name: light;
    animation-duration: 250ms;
    animation-fill-mode: forwards;
}

@keyframes light {
    0% {box-shadow: 0px 0px 50px 0px rgb(73, 70, 70) inset;}
    100% {box-shadow: 0px 0px 50px 0px rgb(39, 37, 37) inset;}
}
