@font-face {
    font-family: 'Roboto Mono';
    src: url(../fonts/roboto-mono-v5-latin-regular.woff2);
}


a:visited{
    color: black;
}

a{
    color: black;
}


html{
    margin:0px;
    justify-content: center;
    font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
    overflow-y: scroll;
}

body{
    margin: 0px;
    padding: 0px;
    font-size: 120%;
}

#menu-button{
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -o-user-select: none;
    -moz-user-select: none;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
}

#menu-button-items{
    position: absolute;
    z-index: 100;
    margin: 0px;
    padding: 0px;
    background-color: rgba(44, 44, 44, 0.96);
    margin-top: 0px;
    padding: 20px;
    font-size: 1.8em;
    list-style-type: none;
    display: none;
    color: whitesmoke;
}

#menu-button-items li a{
    color: whitesmoke;
}

#menu-button-items li a:visited{
    color: whitesmoke;
}





@media (orientation: portrait) {
    #menu-button{
        display: flex;
    }
    .menu{
        display: none;
    }
    #articles{
        margin-left: 1em;
        margin-right: 1em;
    }
}

@media (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    body{
        font-size: 1.5rem;
    }
}

@media (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    body{
        font-size: 2rem;
    }
}



@media (orientation: landscape) {
    #articles{
        max-width: 700px;
    }   
}


.blog-title{
    margin:auto;
    white-space: nowrap;
}


.menu{
    padding-top: 20px;
    position: sticky;
    top: 30px;
    align-self: flex-start;
    max-width: 200px;
    padding-right: 50px;
}

#menu-items{
    margin-top: 0px;
}

#menu-items li{
    margin-bottom: 10px;
}



.main-header{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    position: sticky;
    top: 0px;
    background-color: rgb(0, 0, 0);
    color: whitesmoke;
    text-align: center;
    display: flex;
    justify-items: center;
}


.main{
    margin-top: 20px;
    display: flex;
    justify-content: center;

}


.article hr{
    margin-top: 50px;
    margin-bottom: 50px;
}


.tiny{
    font-size: 0.6em;
}


.date{
    font-size: 0.8em;
    font-weight: bold;
    align-self: flex-end;
}



h2{
    margin-top: 0px;
    margin-bottom: 0px;
}

.current-commit{
    font-size: 0.9em;
    font-style: italic;
}

ul li{
    margin-bottom: 5px;
}

.code{
    max-width: 80vw;

}