


*{
    box-sizing:border-box;
    margin: 0;
    padding:0;
    font-family: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
    overflow-x: hidden;
}

html {
    /* background-color: #000; */
    background-color: #0f0f0f;
}

a {
    text-decoration: none !important;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: #000;
    z-index:1001;
    width:100%;
    margin: 0px 0px;
    padding: 0px 20px;
    position: fixed;
    top: 0px;
}

#navbar-logo {
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display:flex;
    align-items: center;
    gap: 10px;
    overflow-x: visible;
}

#navbar-image {
    max-height: 70px;
    flex-shrink: 0;
    color: #31baff;
}

.navbar__menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
}

.navbar__item {
    height: 80px;
    align-content: center;
    height: 100%;
    padding: 0 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar__links {
    color: #fff;
    text-decoration: none;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #31baff;
    transform: translateY(-2px);
}

.navbar__btn {
    display: flex;
    align-items: center;
}

.navbar__btn.mobile {
    display: none;
}

.navbar__btn.desktop {
    display: flex;
}

.button {
    background: #31baff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.button:hover {
    background: #0a3ee9;
}

.navbar__toggle {
    display: none; /* Hidden by default, shown in mobile view */
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: #fff;
    font-size: 1.5rem;
}


@media screen and (max-width: 968px) {
    .fa-bars {
        line-height: normal !important;
    }
    .navbar__toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 40px;
        transform: translateY(-50%);
        color: #fff;
        z-index: 1001;
    }

    .navbar__btn.desktop {
        display: none;
    }

    .navbar__btn.mobile {
        display: flex;
        justify-content: center;
        padding-bottom: 2rem;
        width: 100%;
    }

    .navbar__menu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        opacity: 0;
        transition: all 0.5s ease;
        background: #131313;
        z-index: 10;
        margin: 0;
    }

    .navbar__menu.active {
        left: 0;
        opacity: 1;
    }

    .navbar__item {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        min-height: 80px;
        text-align:center;
        /* border: 1px solid red; */
        border-bottom: 4px solid #333;
    }

    .navbar__links {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 2rem;
        height: auto;
        min-height: 50px;
        /* border-bottom: 2px solid #333; */
    }

    .navbar__btn.mobile {
        display: flex;
        margin-top: 48px;
        width: 100%;
        justify-content: center;
    }

    .navbar__btn.mobile .navbar__links {
        background: #0a3ee9;
        color: #fff;
        border-radius: 4px;
        border: none;
        max-width: 200px;
        justify-content: center;
    }

    .navbar__btn.mobile .navbar__links:hover {
        color: #0a3ee9;
}

    .button {
        width:80%;
        height:60px;
        justify-content: center;
}
}

/* cover image and text CSS */

.cover {
    background-color: #050505;
}

/* #team-cover-title-lg {
    color: #000;
}
#team-cover-title-sm {
    color: #000;
} */

.cover__container {
    padding-top: 80px;
    /* do i need anything here? */
    width: 100%;
    /* padding: 0px 50px; */
    justify-content: center;
    align-items: center;
    display: flex;
}

.cover__content {
    z-index: 500;
    position: absolute;
    color: white;
    align-items: center ;
    justify-items: center;
}

.cover__content h1 {
    font-size: 4.2rem;
}

.title__lg {
    display:flex;
}

.title__sm {
    display: none;
}

.cover__content p {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.cover__button {
    background: #31baff;
    padding: 14px 22px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;    
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1.8rem;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    text-decoration: none;
    margin: 1.8rem auto 0 auto;  /* auto centers horizontally */
    /* display: inline-flex;        keeps text centered inside */
    justify-content: center;
}

.cover__button:hover {
    background: #0a3ee9;
}

#cover-button-link {
    text-decoration: none;
    color: #fff;
}

#cover-button-signup {
    text-decoration: none;
    color: #fff;
}
@media screen and (min-width: 968px) {
    #cover-signup {
        margin-top: 20px;
    }
}

.bgimage {
    width:100vw;
}

@media screen and (max-width: 968px) {
    .cover__container {
        height: auto;
        padding-top: 80px;
    }

    .cover__content {
        text-align: center;
        margin-bottom: 4rem;
        padding: 0 2rem;
        max-width: 345px;
        padding-top:80px;
    }

    .cover__content h1 {
        font-size: 3rem;
        margin-top: 1rem;
    }

    .cover__content p {
        font-size: 1rem;
    }

    .cover__button {
        margin-top: 0.8rem;
        font-size: 1.2rem;
        padding: 9px 15px;
        border-radius: 6px;
    }

    .cover__button__container {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    /* .bgimage {
        overflow: hidden;
        height: 100%;
    } */
    .bgimage {
    width:120vw;
}
}

/* this is here so that it's overridden whhen screen is smaller */
.about__title {
    align-items: center;
    justify-items: center;
    font-size: 1.4rem;
    color: #fff;
    background-color: #050505;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 680px) {
    .cover__content h1 {
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .title__lg {
        display:none;
    }

    .title__sm {
        display: flex;
    }

    .cover__content p {
        display: none;
    }

    .cover__container {
        padding-top: 60px;
    }

    .bgimage {
        padding-top: 20px;
        width:130vw;
    }

    .cover__button {
        margin-top: 0.6rem;
        font-size: 1rem;
        padding: 9px 15px;
        border-radius: 5px;
        justify-content: center;
    }

    .about__title {
        justify-content: center;
    }
}

/* about us section on the main page */

.about__main {
    background-color:#9edfff;
}

.about__container {
    /* padding-top: 1rem; */
    width: 100vw;
    /* align-items: center;
    justify-items: center; */
}

.about__grid {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 50px;
    padding-top: 50px;
}

.about__content {
    background-color: #0f0f0f;
    color: #fff;
    /* box-shadow: 5px 5px 4px rgba(0,0,0,2); */
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    max-width: 340px;
    transition: all 0.3s ease;
    /* margin-top: 10px; */
}

.about__content p {
    line-height: 1.4;
    font-size: 1.1rem;
    justify-self: center;
}

.about__content h1 {
    margin-bottom: 12px;
    font-size: 2.2rem;
    text-align: center;
}

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

.team__button {
    background: #31baff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;    
    text-decoration: none;
    display: flex;
    align-self: center;
    justify-self: center;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    text-decoration: none;
    margin: 0 auto 50px auto; /* centers horizontally */
}

.team__button:hover {
    background: #0a3ee9;
}

#team-about-btn {
    text-decoration: none;
    color:#fff;
}


/* footer css */

.footer__container {
    background: #000;
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-logo {
    color:#31baff;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer__links {
    width: 90%;
    /* max-width: 1000px; */
    display: flex;
    justify-content: left;
    margin: 40px auto 0 auto;
}

.footer__link-wrapper {
    display: flex;
}

.footer__link-items {
    display: flex;
    flex-direction: column;
    margin: 16px 16px 16px 0;
    text-align: left;
    width: 160px;
}

.footer__link-items h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #0a3ee9;
}

.footer__link-items a {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__link-items a:hover {
    color: #31baff;
    transition: 0.3s ease;
}

.social__media {
    background: #000;
    width: 100%;
    /* padding-bottom: 40px; */
}

.social__media-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 40px auto 0 auto;
}

.website__rights {
    color: white;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    width: 240px;
    text-decoration: none;
}

.tms__container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social__icon_link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}


.social__icon_link a {
    text-decoration: none;
    color: #fff;
}

.social__icon_link:hover {
    color: #31baff;
    transition: 0.3s ease;
}

@media screen and (max-width: 820px) {

    .footer__links {
        padding-top: 0rem;
        justify-content: center;
    }

    .footer__link-items {
        text-align: center;
    }

    .footer__link-wrapper {
        flex-direction: column;
    }

    .social__media-wrap {
        flex-direction: column;
    }

    #footer-logo, .website__rights {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .social__media {
        text-align: center;
    }

    .footer__link-items {
        width: 100%;
        padding: 10px;

    }
}

/* please wait css */


.placeholder {
    background: #0f0f0f;
}

.ph__container {
    padding-top: 80px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.ph__content {
    padding: 20rem 3rem;
    color: #fff;
}

/* login button css */












