@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Frijole&family=IM+Fell+DW+Pica+SC&family=Meow+Script&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Pixelify+Sans:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Elite&family=Swanky+and+Moo+Moo&display=swap");

body {

    background-color: #0e0e0e;
    color: white;
    font-family: 'Poppins', 'Fredoka', sans-serif;

}

a {

    text-decoration: none;
    color: white;

}

a:hover {

    text-decoration: underline;

}

main {

    padding: 5px;
    width: 800px;
    margin: 0 auto;

}

.term {

    font-family: 'Courier New', 'Hack', monospace;
    border: 2px solid white;
    box-shadow: 0px 0px 5px white;
    background-color: #161616;
    line-height: 20px;
    cursor: default;
    user-select: none;
    
}

.term p {

    margin: 0;

}

#autizmus {

    display: block;
    font-style: italic;
    white-space: pre;
    font-size: 14px;
    font-weight: bold;

}

.header {

    position: relative;
    border-bottom: 2px solid #d6d6d6;
    margin-bottom: 2px;

}

#close, #close1 {

    position: absolute;
    right: 0;
    top: 0;
    background-color: #ff0000;
    padding: 3px;
    cursor: pointer;
    line-height: 14px;

}

.g {

    color: #d6d6d6;

}

.gradient {

    background-image: linear-gradient(to left, 
        red, rgb(255, 102, 0), rgb(217, 255, 0), 
        rgb(58, 230, 16), rgb(9, 240, 209), rgb(12, 139, 223), 
        rgb(36, 15, 224), rgb(236, 11, 225), rgb(255, 0, 106), red);
    background-size: 200% 100%;
    background-position: 0 0;
    animation: chroma 5s infinite linear;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

}

.blink {

    line-height: 14px;
    animation: cursor_blink  1s  infinite;

}

ul {

    list-style-type: none;
    margin: 0;
    padding: 0;

}

@keyframes cursor_blink {

    0%  {background-color: white;}
    50%  {background-color: white;}
    51% {background-color: #161616;}
    100% {background-color: #161616;}

}

@keyframes chroma {

    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }

}

#notification {

    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;

}

#notification p {

    margin: 0;

}

@media only screen and (max-width: 800px) {

    #container {

        font-size: 130%;

    }

    main {

        max-width: 100%;

    }

    #term {

        max-width: 100%;

    }

    #autizmus {

        display: none;

    }

}
