/* Aesth.css 2.0 */


/* TODO: change to better local import */
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..600&display=swap');

* {
    box-sizing: border-box
}

body {
    background: #111;
    color: #7a7;
    font-family: 'Handjet';
    font-size: 37px;
    text-shadow: 1px 1px 5px #7ff8;
    animation: none .5s linear alternate infinite;
    font-weight: 300;
}

body:after {
    content: "";
    -webkit-backdrop-filter: brightness(1.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    background: repeating-linear-gradient(#0000, #0003 0.5%);
    pointer-events: none;
}

@keyframes glow {
    0% {
        text-shadow: 0px 0px 0px #fff
    }

    100% {
        text-shadow: 0px 0px 2px #fff
    }
}

nav{
    display: block;
    margin-bottom: 30px;
    border-bottom: 2px solid #7a7;
    padding: 10px;
    background: radial-gradient(#222, #0000);
}
a{
    color: #7aa;
}
nav a{
    color: #7aa !important;
    /* text-decoration: none; */
    font-weight: bold;
    font-size: 35px;
    z-index: 100
}

nav a:before{
    display: inline-block;
    text-decoration: none;
    margin-right: .3em;
    content: '«';
}

textarea {
    background: inherit;
    font: inherit;
    color: inherit;
    width: 100%;
    outline: 2px solid #7a7;
    text-shadow: inherit
}