body{
    margin: 5% auto;
    width: 60%;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-family: 'Oxygen', sans-serif;
    color: rgb(87, 87, 87);
    background: #faf9f5;
    max-width: 800px;
}

body.darkmode {
    background: rgb(57, 57, 57);
    color: rgb(227, 227, 227);
}

body.darkmode a{
    color: rgb(227, 227, 227);
}

.is-hidden{
    display: none;
}

h1{
    font-size: 1.8rem;
}

a{
    color: rgb(87, 87, 87);
}

header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 20px;
}

#theme {
    font-size: 25px;
}

#theme:hover {
    cursor: pointer
}

.landing{
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.links p{
    margin-top: 0px;
}

.intro{
    margin-right: 50px;
}

.is-avatar{
    border-radius: 50%;
    width: 150px;
    min-width: 150px;
    height: 150px;
}

.img-small{
    min-width: 80px;
    width: 80px;
    height: 80px;
}

h3{
    margin-bottom: 5px;
}

.columns{
    display: flex;
}

.columns .titles{
    margin-top: 0px;
}

#content img{
    max-width: 80%;
}

blockquote {
    border-left: 1px solid gray; padding-left: 5px; font-style: italic;
}

footer{
    display: flex;
    width: 70%;
    font-size: 1rem;
    margin-bottom: 10px;
    align-items: center;
}
footer img{
    margin-right: 40px;
}

footer p{
    margin-top: 0px;
}


@media only screen and (max-width: 760px) {
    body {
        width: 90%;
    }

    .landing{
        display: block;
        font-size: 0.9rem;
    }

    .columns{
        display: block;
    }

    footer{
        width: 100%;
    }
}