body {
    font-family: 'Roboto Mono', monospace;
    background-color: #000;
    color: #0f0;
    margin: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
    min-height: 100vh;

}

a {
    color: #0b943a;
    text-decoration: none;
}

a:hover {
    color: #c6ffe2;
    text-shadow: 0 0 10px #a9ffa9;
    text-decoration: none;
}

a.latest {
    animation: colorchange 4s linear infinite;
    -webkit-animation: colorchange 4s ease-in-out infinite;
}

a.latest:hover {
    animation: none;
    -webkit-animation: none;
}
 
 @keyframes colorchange {
   0% { color: #0b943a; }
   50% { color: white; }
   100% { color: #0b943a; }
}
 
 @-moz-keyframes colorchange {
   0% { color: #0b943a; }
   50% { color: white; }
   100% { color: #0b943a; }
}
 
 @-webkit-keyframes colorchange {
   0% { color: #0b943a; }
   50% { color: white; }
   100% { color: #0b943a; }
}

nav {
    background-color: #263238;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
}

hr {
    color:#00FF00;
    background-color:#00FF00;
    border: 0;
    border-top: 1px solid #00FF00;
}

h1 {
    font-size: 24px;
    border-bottom: 2px solid #00FF00;
}

.main {
    max-width: 1000px;
    margin: auto;
    margin-top:20px;
    width: 100%;
}

.container {
    position: relative;
    /*height: 100%;*/
    background-color: #00CC00;
    border-style: outset;
    border-width: 5px;
    margin: 0px;
    padding-left: 2%;
    padding-right: 2%;
    border-color: #00FF00;
    /*margin-top:20px;*/
}

.logo {
    background-color: #000;
    border-style: inset;
    border-width: 5px;
    margin-top: 10px;
    /*margin-bottom: 0%;*/
    padding: 10px;
    border-color: #00FF00;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.content {
    background-color: black;
    color: #00FF00;
    border-style: inset;
    border-width: 5px;
    margin-top: 0%;
    margin-bottom: 1%;
    border-color: #00FF00;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 10px;
    
}

.navbar {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: black;
    border-style: inset;
    border-color: #00FF00;
    border-width: 5px;
    padding: 2px;
    display: flex;
}

.navbar-row {
    text-decoration: none;
    display: flex;
}

.navbar-item {
    text-decoration: none;
    color: black;
    background-color: #00FF00;
    text-align: center;
    border-style: solid;
    border-color: #00FF00;
    overflow: hidden;
    padding: 2px;
    margin: 1px;
    min-width: 10px;
    flex: 1 1;
    align-items: center;
}

.navbar-item:hover {
    border-style: solid;
    border-color: #00FF00;
    background-color: black;
    color: #00FF00;
}

a.navbar-item-link {
    color:#000;
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

a.navbar-item-link:hover {
    color:#00FF00;
    text-shadow: 0 0 0px #fff;
}

a.red-button:hover {
    border-style: inset;
    text-shadow: 0 0 0;
    color:#fff;
}
.red-button {
    text-decoration: none;
    color: #fff;
    border-style: outset;
    border-width: 5px;
    border-color:#ff4242;
    padding: 5px;
    text-align: center;
    background-color: red;
    cursor: pointer;
    /*animation: blink 0.5s alternate infinite;
    -webkit-animation: blink 0.5s alternate infinite;
    -moz-animation: blink 0.5s alternate infinite;*/
    animation-delay: 2s;
    animation: blink-animation 2s steps(40, start) infinite;
    -webkit-animation: blink-animation 2s steps(40, start) infinite;
}


@keyframes blink-animation {
    to {
    visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
    visibility: hidden;
    }
}

.username-points-bar {
    padding-bottom: 4px;
}

.points {
    float:right;
}



@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0.9; }
    100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.9; }
    100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.9; }
    100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.9; }
    100% { opacity:1; }
}
.animate-flicker {
    -webkit-animation: flickerAnimation .07s infinite;
    -moz-animation: flickerAnimation .07s infinite;
    -o-animation: flickerAnimation .07s infinite;
    animation: flickerAnimation .07s infinite;
    animation-duration: 0.07s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
}

.animate-neon {
    animation: neon-animation 3s infinite linear alternate;

    text-shadow: 0 0 5px #00FF00,
                0 0 10px #00FF00,
                0 0 20px #00FF00
}

@keyframes neon-animation {
    60%, 70%, 79% {
        opacity: 1;
    }
    65%, 67%, 76%, 78% {
        opacity: 0.2;
    }
    66%, 69%, 77% {
        opacity: 0.8;
    }

}

#bottom-footer {
    text-align: center;
}

#scroll-container {
    border: 3px solid black;
    border-radius: 5px;
    overflow: hidden;
}

#scroll-text {
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);

    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


#bottom-footer {
    /*position: absolute;*/
    left: 0;
    bottom: 0;
    height: 20px;
    width: 100%;
    min-height:20px;
}

.error-message {
    color: #ff3333;
    background-color: #ffebeb;
    border: 6px solid #ff0000;
    padding: 10px;
    font-weight: bold;
}

.highlight {
    color: #c6ffe2;
    text-shadow: 0 0 10px #a9ffa9;
}

/* fix for sticky footer */
body { display:flex; flex-direction:column; }
.main{ flex:1; }


.errorlist {
    color: #ff3333;
    background-color: #ffebeb;
    border: 6px solid #ff0000;
    padding: 10px;
    font-weight: bold;
    list-style-type: none;
}