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

body {
    font-family: "Inconsolata", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 95;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    /*border-style: solid;
    border-width: 3px;
    border-radius: 10px;*/
    margin-top: 20px;
    padding-left: 3%;
    padding-right: 3%;
    font-weight: 350;
}

.navbar li {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar a {
    color: black;
    text-decoration: none;
    font-size: 35px;
}

.navbar a:hover {
    text-decoration: underline;
}

.navbar a.current {
    text-decoration: underline;
    text-shadow: 0cap;
}

.github-logo {
    height: 30px;
}

.discord-logo {
    height: 30px;
}

.content {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: left;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 350;
}

