html {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #101010;
    color: white;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: url('../img/me.png');
    background-size: 100vmin;
    background-repeat: no-repeat;
    background-position: right -30vmin bottom;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

h2 {
    font-weight: 300;
    font-size: 1.2rem;
    color: #F2D45C;
}

footer {
    margin-top: auto;
}

.links {
    font-size: 1.7rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}
.links a {
    text-decoration: none;
    color: white;
}
.links a:after {
    content: ".";
}
.links a:hover:after {
    color: white !important;
}
.links a.link-fb:hover, .links a.link-fb:after {
    color: #4267B2;
}
.links a.link-ig:hover, .links a.link-ig:after {
    color: #F56040;
}
.links a.link-gh:hover, .links a.link-gh:after {
    color: #929292;
}
.links a.link-is:hover, .links a.link-is:after {
    color: #F2D45C;
}

.quote {
    font-size: 0.8rem;
    opacity: 0.5;
    padding-top: 5px;
}

@media only screen and (max-width: 700px) {
    html {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 560px) {
    html {
        font-size: 0.8rem;
    }
    body {
        background-size: min(100vw, calc(100vh - 130px));
        background-position: center bottom;
    }
    footer {
        margin-top: 30px;
        text-align: right;
    }    
}

@media only screen and (max-width: 560px) and (max-height: 250px) {
    body {
        background-image: none;
    }
    footer {
        margin-top: auto !important;
        text-align: left;
    }    
}