html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    overflow: clip;
}

#main {
    background-color: #404858;
    overflow: clip;
    display: grid;
    grid-template-rows: 2em auto;
    max-height: 100vh;
}

#navigation {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    column-gap: 2em;
    margin: 0.5em;

    color: lightgray;
}

#content {
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 100vh;

    -ms-overflow-style: none;
    scrollbar-width: none;

    color: lightgray;
}

h1 {
    font-family: "Inknut Antiqua";
}

h1.title {
    font-size: 4rem;
}

h1,h2 {
    /*color: springgreen;*/
    color: #00e070;
}

#content::-webkit-scrollbar {
    display: none;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    max-width: 60vw;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}