h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

#main-banner {
    display: flex;
    position: relative;
    width: auto;
    height: 83vh;
    overflow-x: hidden;
    margin-bottom: 120px;
}

#main-banner img {
    position: absolute;
    opacity: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    justify-content: center;
}

#main-banner h1 {
    font-family: var(--primary-font);
    color: var(--alternative-text-color);
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 4px;
    display: flex;
    position: absolute;
    width: 100%;
    top: 2%;
    justify-content: center;
}

#who-are-we {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    margin-bottom: 120px;
}

#who-are-we img {
    width: 40%;
    min-height: 150px;
}

#who-are-we div {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#who-are-we h2 {
    font-size: 32px;
    margin-bottom: 0.6em;
}

#team {
    display: flex;
    flex-direction: row;
    position: relative;
    width: auto;
    margin-bottom: 60px;
}

#team .dev-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-right: 60px;
}

#team .dev-info-box {
    display: block;
    width: 50%;
}

#team .dev-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-height: 20%;
}

#team .dev-header h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
}

#team .dev-header img {
    max-width: 30px;
    margin-left: 10px;
}

#team p {
    display: block;
    width: 100%;
}

#team .dev-box>img {
    width: 40%;
    min-width: 160px;
    margin-right: 20px;
}

#donate-button {
    width: fit-content;
}

#donate-button a {
    height: 2.8rem;
}

#donate-button span {
    font-size: 20px;
    letter-spacing: 0px;
    padding: 1px;
}


@media (max-width: 900px) {
    #team {
        flex-direction: column;
        margin-bottom: 20px;
    }

    #team>div {
        margin-right: 0;
        margin-bottom: 40px;
    }

    #team>div:last-child {
        margin-bottom: 0;
    }

    #who-are-we {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #who-are-we img {
        display: none;
    }

    #who-are-we div {
        width: 80%;
    }

}

@media (max-width: 768px) {
    main section {
        margin-bottom: 60px;
    }

    #main-banner {
        height: 50vh;
        margin-bottom: 80px;
    }

    #who-are-we {
        margin-bottom: 80px;
    }

    #team .dev-box>img {
        max-height: 160px;
    }

    #team .dev-info-box>p {
        margin-top: 0.8em;
    }

    #team .dev-header {
        flex-direction: column;
        min-height: fit-content;
        align-items: left;
    }

    #team .dev-header h3 {
        width: 100%;
        margin-bottom: 10px;
    }

    #team .dev-social-media {
        width: 100%;
        align-items: left;
    }

    #team .dev-social-media a:first-of-type img {
        margin-left: 0;
    }
    
    @media (max-width: 600px) {

        #main-banner {
            height: 45vh;
            margin-bottom: 80px;
        }
    }

}