@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Space+Mono:wght@400;700&display=swap');

body {
    font-family: "Space Mono", "Courier New", Courier, monospace;
    background-color: rgb(0, 115, 255);
}

.sectionheader {
    background-color: rgb(68, 152, 255);
    display: block;
    font-size: 2.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

ul li a {
    font-family: "Jetbrains Mono", "Space Mono", "Courier New", Courier, monospace;
}

/* Title animation */

body header h1 span.cursor {
    font-weight: bold;
    font-style: italic;
    /*color: #00F3FF;*/
    /*color: #FF8C00;*/
    color:#FF0073
}

body header h1 {
    padding-left: 10px;
    font-size: 50px;
    font-size: clamp(50px, 50px, 25px); /*TODO: FIX!*/
    font-weight: normal;
    font-style: italic;
}

/* Flex containers */

div.flex-container section {
    width: 50%;
    padding: 10px;
}

div.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}

@media screen and (max-width: 800px) {
    div.flex-container {
        flex-direction: column;
    }

    div.flex-container section {
        width: 100%;
        padding: 0;
    }
}

/* Responsive iframes */

.video-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}