body {
    font-family: 'Jost', sans-serif;
    /* Or try Segoe UI */
    color: rgb(14, 14, 14);
    font-size: 1.15rem;
    background-color: white;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font: inherit;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-top: 0;
    margin-bottom: .8rem;
}

/* Remove bolding the headers */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    /* Removes underline from links */
}

a:hover {
    color: inherit;
    text-decoration: underline;
}

textarea, input, select, option {
    font-family: 'Jost', sans-serif;
    font-size: 1em;
}

/* Mobile/Desktop */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Header/Nav-Bar Styling */

#main-header {
    display: flex;
    justify-content: flex-start;
    position: fixed;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    height: 40px;
    top: 0;
    color: white;
    background: linear-gradient(rgb(0, 0, 0, .9), rgb(0, 0, 0, .5));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

#main-header a:hover {
    color: #ff0;
    text-decoration: none;
    opacity: 90%;
    cursor: auto;
}

.about-menu {
    display: flex;
    justify-content: flex-start;
    position: fixed;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    height: 40px;
    max-height: unset;
    top: 0;
    left: 80px;
}

.about-menu-icon {
    margin-top: 5px;
}

.right-menu {
    display: flex;
    position: absolute;
    gap: 10px;
    right: 1%;
}

#thoxt-logo a {
    font-family: 'antipol-variable', sans-serif;
    color: #ff0;
    font-size: 1.5rem;
    line-height: 40px;
    cursor: auto;
}

.hidden {
    display: none;
}

/* Common Page Elements */

.time-ago {
    color: #999;
    font-size: 0.8em;
}

textarea:focus, input:focus, select:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #888;
}

#search-results {
    display: none;
    /* Initially hidden */
    position: relative;
    top: 50px;
}

#content {
    margin-top: 30px;
    padding: 10px;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: .2em;
}

.apply-form li {
    color: red;
}

.apply-form p {
    width: 400px;
    background-color: #ededed;
    border-radius: 15px;
    padding: 5px;
}

.apply-btn {
    margin-bottom: 1em;
    width: 400px;
    height: 2em;
    margin: 10px 0;
    padding: .5em 1em;
    border: none;
    border-radius: 1em;
    background-color: #ccc;
    color: #222;
    font-size: 1em;
    cursor: pointer;
}

.success-message {
    color: green;
    font-size: 1.2em;
}

.error-message {
    color: red;
    font-size: 1.2em;
}

.team-image {
    width: 400px;
    height: auto;
    float: right;
    margin: 5px;
}

.team, .basic-about-div {
    width: 850px;
    max-width: 95vw;
    margin: 0 auto;
}

.basic-about-div img {
    max-width: 850px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .apply-btn {
        margin-top: 50px;
    }

    .about-menu {
        flex-direction: column;
        width: 100%;
        height: fit-content;
        max-height: 0;
        top: 35px;
        left: 0;
        gap: 0;
        background-color: rgb(0, 0, 0, .75);
        border-radius: 15px;
        cursor: pointer;
        overflow: hidden;
        opacity: 0;
        transition: max-height 1s ease, opacity 0.4s ease;
        z-index: 100;
    }

    /* When visible */
    .about-menu.show {
        max-height: fit-content; 
        opacity: 1;
    }

    .about-menu-item {
        width: inherit;
        height: 45px;
        padding: 5px;
        padding-left: 10%;
        line-height: 45px;
        color: #ddd;
        border-bottom: 1px solid #222;
        cursor: pointer;
    }

    .about-menu-item:hover {
        font-size: 1.3rem;
        color: rgb(229, 229, 40);
        background-color: rgba(0, 0, 0, 0.9);
        border-bottom: 1px solid #ff0;
    }
}