@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
html,
body {
    padding: 0;
    margin: 0;
    /*font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
      Fira Sans, Droid Sans, Helvetica Neue, sans-serif;*/
    font-family: 'Source Code Pro', monospace;
    background-color: #052334;
    color: white;

    text-align: center;
}

a {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    cursor: pointer;
    font-weight: bold;
}

a:link, a:visited {
    text-decoration: none;
    color: white;
}

* {
    box-sizing: border-box;
}

.content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 2;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navButton {
    text-align: center;
    cursor: pointer;
    font-size: x-large;
}

#menuButton:hover {
    cursor: pointer;
}

.nav {
    background-color: #000;
    font-family: 'Source Code Pro', monospace;
    font-size: larger;
    position: relative;
    height: 100%;
}

.nav ul, nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin-top: 0;
}

.nav li, nav li {
    padding: 10px 30px;
}

.nav li:hover, nav li:hover {
    background-color: #111;
}

.homeNavEntry {
    border-bottom-color: white;
    border-bottom-width: 2px;
    border-bottom-style: dashed;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: #000;
    font-family: 'Source Code Pro', monospace;
    height: 100%;
    font-size: larger;
}

main {
    height: 100%;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.description{
    text-align: center;
}

.clickable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    cursor: pointer;
    font-weight: bold;
}

footer {
    width: 100%;
    height: 100px;
    border-top-style: dashed;
    border-top-width: thin;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

footer > * {
    margin: 5px 20px;
}

.infoBox {
    font-size: small;
}

.hidden {
    display: none;
}

.pointer {
    cursor: pointer;
}

@media only all and (max-width: 500px) {
    .content {
        flex-direction: column;
    }

    main{
        padding: 0 2rem;
    }

    .nav {
        height: 50px;
        width: 100%;
    }

    nav {
        width: 100%;
    }

    footer {
        flex-direction: column;
    }
}