@font-face {
    font-family: "NaN Holo Mono";
    src: url("NaNHoloMonoVF.woff2");
}

html,
body {
    height: 100%;
    box-sizing: border-box;
    overflow-y: hidden;
}

body {

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    font-family: "NaN Holo Mono", monospace;
    font-variation-settings: "wght" 88;
    font-size: 20px;
    font-weight: normal;

    line-height: 1.25;
    text-align: center;
    display: flex;
    flex-direction: column;

    background: #FFAFFE;
    color: #FFFFFF;

    padding: 20px 20px 75px;
}

a {
    margin-bottom: auto;
    color: inherit;
    text-decoration: none;
}

p {
    font-size: 45px;
    margin: auto 0 0;
    user-select: none;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 40rem;
    margin: 0 auto;
    min-width: 15rem;
    width: 100%;
}

form>* {
    box-sizing: border-box;
    width: 100%;
    display: block;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    padding: 2px 20px 0;
    border: 0;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: inherit;
    font-variation-settings: inherit;
    font-style: inherit;
    font-weight: inherit;
    text-align: center;
    outline: none;
}

input[type=submit],
button {
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
}

input[type=submit]:hover,
button:hover {
    background: #333333;
}


#goggly {
    padding-top: 0.1em;
    font-size: 40vh;
    margin: 0 auto;
    line-height: 1;
    user-select: none;
    display: inline-block;
    width: 1em;
    height: 1em;
    position: relative;
    pointer-events: none;
}

#whites,
#pupils {
    height: 2em;
    width: 1em;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

#whites {
    content: " ";
    background-image: url("goggly-whites.png");
    z-index: 1;
}

#pupils {
    content: " ";
    background-image: url("goggly-pupils.png");
    z-index: 2;
}