* {
    margin: 0;
}

html, body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: rgb(21,20,22);
    background: linear-gradient(45deg, rgba(21,20,22,1) 0%, rgba(41,37,47,1) 100%);
    background-size: contain;
}

body {
    text-align: center;
    font-family: Inter, sans-serif;
    color: white;
}

#header {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    background-image: url(media/mountainstest.png);
    background-size: contain;
}

#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    transition: background-color 0.4s;
}

#navbar.scrolled {
    background-color: #151416;
}

.navbutton {
    background-color: rgba(0, 0, 0, 0.15);
    width: 9.5em;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4vmax;
    transition: background-color 0.5s ease-in;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 9.5em) {
    .navbutton {
        width: 9.5em;
    }
}

.button-text {
    margin-left: 8px;
}

.icon {
    max-width: 20px;
    stroke:white;
}

.active {
    background-color: rgba(0, 0, 0, 0.5);
}

#content {
    width: 70%;
    margin: auto;
}

.textbox {
    width: 93%;
    margin: auto;
}

.content-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sectioned-content {
    display: flex;
    justify-content: center;
}

.button {
    background-color: rgba(0, 0, 0, 0.3);
    width: 9.5em;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: background-color 0.5s ease-in;
    margin: 0.5em 0;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

h1 {
    font-weight: 600;
    font-size: 3rem;
}

p {
    font-size: 1.3rem;
    line-height: 0.25in;
}

a {
    text-decoration: none;
    color: white;
}

section {
    padding: 10px;
    display: flex;
    flex-flow:column;
    justify-content: center;
    align-items: center;
}

.navbutton:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.3);
}

.spaced {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

@media (max-width: 30em) {
    .staff {
        width: 30em;
    }
}

.staff {
    display: flex;
    flex-flow: column;
    padding: 10px 12px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 1em 0;
    transition: background-color 0.5s ease-in;
}

.staff:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.staff-info {
    display: flex;
    flex-flow: row;
    text-align: left;
}

.staff-link {
    text-align: right;
    color: #888;
    font-size: 1.2rem;
    font-style: italic;
}

.profile {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    padding-left: 1em;
}

.pfp {
    max-width: 6.5vmax;
    border-radius: 10px;
}

h3 {
    font-size: 2em;
}

footer {
    margin-top: 5em;
    display: flex;
    justify-content: space-evenly;
    font-style: italic;
    margin-bottom: 2em;
}