@media screen and (max-width:1643px) {
    #mainCont {
        margin-top: 18% !important;
        text-align: center;
    }

    #subtitle {
        margin: auto;
        width: 80% !important;
    }

    #applyHere {
        margin: 24px auto auto auto;
    }
}

@media screen and (max-width: 740px) {
    .wrap {
        flex-direction: column !important;
    }

    #developers {
        flex-direction: column !important;
    }
}

@media screen and (max-width: 935px) {
    #aboutExplainer {
        width: 90% !important;
    }

    #mainTitleAbout {
        padding: 12px 0px 0px 12px !important;
    }

    .aboutText {
        padding: 18px 0px 12px 18px !important;
    }
}

@media screen and (max-width:600px) {
    #subtitle {
        width: 100% !important;
    }
}

* {
    color: white;
}

body {
    background-color: rgb(39, 39, 39) !important;
    transition-duration: 0.2s;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: auto;
}

#headerSub {
    width: 60%;
    padding: 18px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#header a {
    animation: fadeIn ease 1s;
    color: rgb(85, 85, 85);
    font-weight: bold;
    text-decoration: none;
    border-radius: 24px;
    padding: 6px;
    width: 150px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0);
    transition-duration: 0.4s;
}

#header a:hover {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(235, 235, 235, 0);
    background-color: rgba(255, 255, 255, 0.459);
    color: black !important;
}

#mainCont {
    width: 70%;
    margin: 12% auto auto auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mainContArticle {
    width: 70%;
    margin: 4% auto auto auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#wow {
    position: relative;
}

#newText {
    background-color: rgb(68, 65, 255);
    border-radius: 24px;
    padding: 4px 12px 4px 12px;
    color: white;
    font-size: 0.8rem;
}

#rightText {
    padding-left: 4px;
}

#mainTitle {
    font-size: 4rem;
    font-weight: bold;
}

#subtitle {
    width: 60%;
    margin: auto;
}

#applyHere {
    color: white;
    width: 275px;
    padding: 8px !important;
    text-decoration: none;
    border-radius: 24px;
    background-color: rgb(68, 65, 255);
    border: none;
    outline: none;
    transition-duration: 0.2s;
    margin-top: 24px;
}

#sub {
    animation: fadeUp ease 1s;
    width: 80%;
    margin: auto;
    text-align: center !important;
}

#applyHere:hover {
    background-color: rgb(95, 93, 255);
}

#main {
    flex: 1;
}

#footer {
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

#credit {
    color: rgb(128, 128, 128);
}

#myVideo {
    filter: brightness(50%);
    z-index: -1000;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        margin-top: 4%;
    }

    100% {
        opacity: 1;
        margin-top: 0%;
    }
}

@keyframes fadeUpMore {
    0% {
        opacity: 0;
        margin-top: 1%;
    }

    100% {
        opacity: 1;
        margin-top: 0%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#teamCont {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 80%;
    margin: auto;
}

.teamMember {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.memberPic {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
}

.wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#developers {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 4% auto auto auto;
    width: 100%;
}

.teamName {
    text-align: center;
    margin: auto;
    color: white;
    font-family: 'Roboto', sans-serif;
    padding-top: 12px;
    font-size: 1.1rem;
}

.title {
    color: grey;
    margin: 0px auto auto auto;
    text-align: center;
}

#otherSub {
    margin-bottom: 200px;
}

#aboutExplainer {
    background-color: white;
    width: 70%;
    height: 100%;
    padding: 24px;
    margin: 4% auto auto auto;
    border-radius: 24px 0px 24px 0px;
}

#mainTitleAbout {
    color: black;
    font-size: 3rem;
    text-align: left;
    font-weight: bold;
    padding: 48px 0px 24px 48px;
}

.aboutText {
    color: black;
    padding: 0px 28px 12px 64px;
    width: 90%;
    margin-top: 0px;
}

#bottomSpacer {
    height: 35px;
}

#explainer {
    padding: 64px;
    background-color: white;
    width: 80%;
    height: 100%;
    margin: 15% auto auto auto;
    border-radius: 48px 48px 0px 0px;
}

.bottomTitle {
    color: black;
    font-size: 3rem;
    text-align: center;
}

.bottomDesc {
    color: black;
    font-weight: bold;
    font-size: 2rem;
}