@import url(https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css);

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

body {
    background-color: #101010;
    color: white;
    margin: 0px;
    height: 200px;
}

* {
    font-family: 'Fira Code', monospace;
}

@supports (font-variation-settings: normal) {
    code {
        font-family: 'Fira Code VF', monospace;
    }
}

.spacer {
    aspect-ratio: 900/200;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bottom {
    background-image: url('/img/back.svg');
}

.top {
    background-image: url('/img/back2.svg');
        margin-bottom: -10vh;
}

.middle {
    background-image: url("/img/middlespacer.svg");
}


aside {
    font-size: 10px;
    margin-right: 1%;
    float: right;
}

a {
    text-decoration: none;
    color: white;
}


.readmore {
    background-color: black;
    color: #EE0000;
    text-decoration: none;
    border: none;
}

.readmore:visited {
    color: #5b5b5b;
}

p {
    font-size: 14px;
    margin: 1vh;
}

.icon {
    margin: 0;
}

.content {
    min-height: 75vh;
}

@media (max-width: 1200px) {
    .content {
        min-height: 90vh;
    }
}

/* tags */
.taglist {
    display: flex;
    margin: 0;
    border-top: white solid .15vw;
    padding: 1.2vh 0 ;

}

.tagitem a {
    align-self: center;
    margin: .3vh .3vw;
    padding: .5vh .5vw;
    background-color: #353535;
    border-radius: 5px;
}

.tagitem a:hover {
    background-color: #EE0000;
}

.tagitem {
    display: inline-block;
}

/* mobile */
@media (max-width: 800px) {
    .spacer {
        height: 20vh;
    }
}

#postHeading {
 padding-top: 3vh;
}