:root {
	--primary-color: #137ee8;
}

@font-face {
    font-family: 'LatoRegular';
    src: url('/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LatoLight';
    src: url('/fonts/Lato-Light.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

* {
    box-sizing: border-box;
    color: #000000cc;
    font-family: LatoLight;
    font-size: 12pt;
}

body {
    background: #eeeeee;
    padding: 0;
    margin: 0;
}

pre {
    font-family: monospace;
}

button {
    border: none;
    border: 1px #000000ee solid;
    background: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000000ee;
    cursor: pointer;
}

#page {
    width: 100%;
    min-width: 320px;
}

::selection {
    color: #ffffff;
    background: var(--primary-color);
}

/*
#crt::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    height: 100%;
}
*/

::placeholder {
    color: #00000066;
}