@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@800&display=swap');

:root {
    --percent: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    /* position: absolute;
    top: 0; left: 0; bottom: 0; right: 0; */
    /* background: radial-gradient(circle, transparent 50%, black 150%); */
    background: linear-gradient(0deg, rgba(162,250,115,1) var(--percent), rgba(0,160,255,0) var(--percent));
}

#output {
    padding: 5rem;
    font-family: 'Public Sans', sans-serif;
    font-size: 5vmax;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    word-break: break-all;
    overflow-x: hidden;
}