/*
 * Name: Seafoam Deep
 * Author: LEVIATHREN
 * Website: https://leviathren.neocities.org/
 */

* {
    box-sizing: border-box;
}

::selection{
    background: #00a777;
    color: black;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #00a777;
    border: 1px solid black;
}

::-webkit-scrollbar-track {
    background: #141414;
    border: 1px solid black;
}

html {
    background: black;
    scrollbar-width: thin;
    scrollbar-color: #00a777 #141414;
}

body {
    background: repeating-linear-gradient(
    to bottom,
    #202020 0px,
    black 1px,
    black 2px,
    black 3px
    );
    color: #dedede;
    font-family: monospace, "lucida console", serif;
    margin: 0;
}

h1 a {
    padding: 10px;
    width: 12%;
    white-space: nowrap;
    vertical-align: middle;
    color: #00efaa !important; 
}

footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.footer-text {
    font-size: 0.8rem;
}

a {
    color: #00c990;
    transition: 0.2s ease;
}

a:hover {
    background: #181818;
    color: #00efaa !important;
}


button, select, input {
    background: #222222;
    color: white;
    border: 1px solid white;
}

button:hover, select:hover, input:hover {
    background: #4d4d4d;
}

.rev { unicode-bidi: bidi-override; direction: rtl; }
.obem { position: absolute; display:inline-block; z-index: -1; width: 0px; height: 0px; overflow: hidden; };
