@font-face {
    font-family: 'irma';
    src: url('irma.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'term';
    src: url('terminus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: black;
    font-size: 3vh;
    color: #0f0;
    line-height: 1.4;
    background-size: 20px 20px;
    background-image: linear-gradient(rgba(0, 128, 128, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 128, 128, 0.1) 1px, transparent 1px);
    font-family: 'term', monospace;
}

article {
    font-family: 'term', monospace;
    height: 100vh;
    background-color: black;
    width: 60vw;
    margin: 0 auto;
    border: 3px solid green;
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    article {
        width: 95vw;
        overflow-x: auto;
        white-space: normal;
        word-wrap: break-word;
    }
    
    body {
        font-size: 1.8vh;
    }
    
    pre {
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-x: auto;
        max-width: 100%;
    }
    
    #sitetitle p {
        font-size: 8vh;
    }
    
    .links234 {
        width: 95vw;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .links234 a {
        margin: 3px;
        padding: 4px;
        font-size: 1.6vh;
    }
}

hr {
    color: green;
}

h1, h2, h3, pre {
    color: #0ff;
    text-align: center;
}

#sitetitle {
    border-bottom: 2px dashed green;
}

#sitetitle p {
    font-family: 'irma', monospace;
    font-size: 5vh;
    color: #0ff;
    margin: 0;
    padding: 0;
}

.links234 {
    display: flex;
    width: 60vw;
    flex-direction: row;
    flex-wrap: wrap;
}

.links234 a {
    color: #0ff;
    margin: 2px;
    padding: 5px;
    border: 2px solid green;
    text-decoration: none;
}

#about {
  padding: 10px;
}