:root {
    --accent: #0080ff;
    --alternate-background: rgb(40, 40, 40);
}
body {
    margin: 0;
    font-family-old: Verdana, Geneva, Tahoma, sans-serif;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 120%;
    background-color: rgb(25, 25, 25);
    color: white
}
h1 {
    font-size: 200%;
}
h2 {
    font-size: 150%;
}
h3 {
    font-size: 130%;
    margin: 0;
}
#nav-icon {
    justify-content: left;
    margin-right: auto;
    margin-left: 0px;
}
nav {
    background-color: hsla(0,0%,9%,.6);
    backdrop-filter: blur(15px);
    border-bottom: rgb(100, 100, 100) solid 1px;
    position: fixed; 
    width: 100%; 
    z-index: 2;
}
nav > ul {
    display: flex;
    margin: 0;
}
nav > ul > li {
    display: block;
    padding: 8px;
    align-content: center;
    float: right;
    margin-right: 4px;
}
nav > ul > li > a {
    color: lightgray;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px;
    transition: font-size .2s ease-out;
}
nav > ul > li > a:hover {
    font-size: 115%;
}
#selected-link {
    color: white !important;
}
section {
    padding: 16px;
    padding-top: 52px;
    padding-bottom: 52px;
}
section:nth-child(even) {
    background-color: rgb(25, 25, 25);
}
section:nth-child(odd) {
    border-top: 4px black solid;
    border-bottom: 4px black solid;
    background-color: var(--alternate-background);
}
div.flex-container {
    display: flex;
    justify-content: space-between;
}
div.progress-container {
    display: flexbox;
    align-items: center;
    width: 100%;
}
div.progress-container > progress {
    width: 50%;
}

div.progress-container > p {
    width: 50%
}
div.container {
    background-color: rgb(50, 50, 50);
    border: 1px solid rgb(100, 100, 100);
    color: white;
    padding: 16px;
    border-radius: 15px;
    font-size: 80%;
}
div.bigtext-container > p {
    font-size: 120%;
}
div.container-spacing {
    margin: 4px;
}
div.grid-container {
    max-width: 25%;
}
a.quiet-link {
    color: #8080cc;
    text-decoration: none;
}
a.link {
    color: #8080cc;
}
img.round {
    border-radius: 6%;
}
.align-center {
    align-content: center;
    justify-content: center;
}
div.flex-item {
    text-align: center;
    flex-basis: 100%;
    margin: 16px;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.left {
    display: flex;
    justify-content: left;
    flex-direction: column;
    float: left;
}
.left-text {
    text-align: left;
}
.center {
    display: flex;
    justify-content: center;
    text-align: center;
}
.right {
    display: flex;
    justify-content: right;
    flex-direction: column;
    float: right;
}
.flex-row {
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}
span.java {
    color: var(--accent);
}
span.libgdx1 {
    color: rgb(0, 0, 0);
}
span.libgdx2 {
    color: rgb(255, 50, 50);
}
span.ongoing-project {
    color: rgb(0, 255, 0);
    font-weight: bold;
}
.nearest-neighbor {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.contact-list {
    align-self: flex-start;
}
.contact-list > a {
    padding-right: 15px;
}
.center-text {
    text-align: center;
}
.smooth-image {
    border-radius: 25px;
    border: 8px solid black;
}
.fade-up-first {
    position: relative;
    animation: forwards fade-in 1s, forwards move-up 1s;
    animation-timing-function: ease-out;
}
.fade-up-second {
    position: relative;
    animation: forwards fade-in 1.5s, forwards move-up 1.5s;
    animation-timing-function: ease-out;
}
.fade-left-first {
    position: relative;
    animation: forwards fade-in 1s, forwards move-right 1s;
    animation-timing-function: ease-out;
}
.fade-left-second {
    position: relative;
    animation: forwards fade-in 1.5s, forwards move-right 1.5s;
    animation-timing-function: ease-out;
}
.fade-right-first {
    position: relative;
    animation: forwards fade-in 1s, forwards move-left 1s;
    animation-timing-function: ease-out;
}
.fade-right-second {
    position: relative;
    animation: forwards fade-in 1.5s, forwards move-left 1.5s;
    animation-timing-function: ease-out;
}
.margin-left {
    margin-left: 50px;
}
.hover-enlarge {
    transition: transform .1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-enlarge:hover {
    transform: scale(1.15);
}
.hover-enlarge:active {
    transform: scale(.9) !important;
}
.side-image-margin {
    margin: auto !important;
}
progress {
    margin: 0 5px 0 5px;
}
@keyframes fade-in {
    from  {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes move-right {
    from {
        left: -70px;
    }
    to {
        left: 0;
    }
}
@keyframes move-left {
    from {
        right: -70px;
    }
    to {
        right: 0;
    }
}
@keyframes move-up {
    from {
        bottom: -70px;
    }
    to {
        bottom: 0;
    }
}
@keyframes slight-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(0);
    }
    75% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-4px);
    }
}
.bouncy {
    animation: inherit, 1s infinite alternate linear;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
@media screen and (max-width: 600px) {
    div.flex-container {
        flex-direction: column;
        max-width: 100%;
    }
    div.grid-container {
        max-width: 100% !important;
    }
    @keyframes move-right {
        from {left: -20px;}
        to {left: 0px;}
    }
    @keyframes move-left {
        from {right: -20px;}
        to {right: 0px;}
    }
    .side-image-margin {
        margin: inherit !important;
    }
}
@media screen and (max-width: 1200px) {
    * {
        font-size: .9em;
    }
    .margin-left {
        margin-left: 15px;
    }
}