body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    max-width: 90%;
    margin: auto;
}

html {
    height: 100%;
    display: flex;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.title {
    letter-spacing: 10px;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    color: rgb(250, 250, 250);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.menu {
    overflow: hidden;
    border: solid 1px #444444;
    width: 15em;
    border-radius: 3px;
    opacity: 0.958;
    text-align: center;
}

.menu a {
    text-decoration: none;
    display: block;
}

.menu :last-child {
    margin-bottom: 0;
}

.fancy-hover {
    background: rgba(36, 36, 36, 0.9);
    color: #FFF;
    align-items: center;
    cursor: pointer;
    padding: 1em;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #333;
    z-index: 2;
    transition: background-color 0.2s linear;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fancy-hover:before,
.fancy-hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.1s linear;
}

.fancy-hover:before {
    width: 160px;
    height: 120px;
    background: radial-gradient(circle at center, #FFF 0%, transparent 60%);
    opacity: 0;
    mix-blend-mode: screen;
    transform: translate(calc(var(--px) * 1px), calc(var(--py) * 1px)) translate(-50%, -50%);
}

.fancy-hover:after {
    background: inherit;
    margin: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition-delay: 0.05s;
}

.fancy-hover:hover {
    background-color: rgba(56, 56, 56, 0.9);
}

.fancy-hover:hover:before {
    opacity: 0.6;
}

.fancy-hover:hover:after {
    opacity: 0.85;
    transition-delay: 0s;
}

.poppy-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 20vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity .3s
}

.poppy-popup.show {
    opacity: 1
}

.poppy-popup>.poppy-popup-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%
}

.poppy-popup>.poppy-popup-container {
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    position: relative;
    z-index: 1020;
    border-radius: 3px;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.3);
    overflow: hidden;
}

.poppy-popup>.poppy-popup-container>.poppy-popup-header {
    background-color: #FFF;
    color: #222;
    height: 50px;
    width: 100%;
    position: relative;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.poppy-popup>.poppy-popup-container>.poppy-popup-header>.poppy-popup-title-text {
    width: 100%;
    max-height: 50px;
    font-size: 1.5em;
    text-align: center;
    line-height: 50px;
    text-overflow: ellipsis;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap
}

.poppy-popup>.poppy-popup-container>.poppy-popup-content {
    background-color: #FFF;
    width: 100%;
    padding: 10px 20px;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    overflow: auto
}

.poppy-popup>.poppy-popup-container>.poppy-popup-content>input[type="text"] {
    background-color: transparent;
    border-width: 0;
    border-bottom: 2px solid #CCC;
    outline: 0;
    font-size: 1.3em;
    width: 100%;
    margin-top: 20px;
    padding: 5px;
    box-shadow: none;
    transition: border-bottom .2s
}

.poppy-popup>.poppy-popup-container>.poppy-popup-content>input[type="text"]:focus {
    border-bottom: 2px solid #2088AD
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons {
    height: 50px;
    padding: 0 10px;
    background-color: #FFF;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow: hidden
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept,.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel {
    width: 120px;
    display: block;
    float: right;
    color: #2088AD
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept>a,.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel>a {
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: center;
    padding: 10px 0;
    border-radius: 3px;
    transition: background-color .2s,box-shadow .1s
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept>a:active,.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel>a:active {
    box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.3)
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept>a>i,.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel>a>i {
    vertical-align: middle;
    margin-top: -3px
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept {
    transform: translate(-100%, 0);
    color: #2088AD
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-accept>a:hover {
    background-color: rgba(0,0,0,0.1)
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel {
    left: 0;
    color: #2088AD
}

.poppy-popup>.poppy-popup-container>.poppy-popup-buttons>.poppy-popup-cancel>a:hover {
    background-color: rgba(0,0,0,0.1)
}
