/* Define custom font */
@font-face {
    font-family: 'IBM3270';
    src: url('/static/fonts/IBM3270.woff') format('woff'),
         url('/static/fonts/IBM3270.ttf') format('ttf');
}

body {
    background-color: #000;
    color: #0f0;
    font-family: "IBM3270", "Courier New", Courier, monospace;
    font-size: 20px;
    line-height: 1.5;
}

a {
    color: #0f0;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0f0;
    font-weight: bold;
}

input,
textarea,
button {
    background-color: #000;
    color: #0f0;
    font-family: "IBM3270", "Courier New", Courier, monospace;
    font-size: 16px;
    border: 1px solid #0f0;
    border-radius: 5px;
    padding: 5px;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
    border-color: #0f0;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    background-color: #0f0;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #090;
}

.centered {
    max-width: 1000px;
    margin: 0 auto;
}

.terminal-text:last-child:after {
    content: '_';
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
