html {
    scroll-behavior: smooth;
    cursor: default;
}

body {
    background-color: whitesmoke;
    margin: 0;
}
p{
    font-family: sans-serif;
}

::selection{
    background-color: #f4b7d7;
    color: white;
}
::-moz-selection{
    background-color: #f4b7d7;
    color: white;
}


.outerTop{
    background-image: url(socialsync_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.topNav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.2rem !important;
    margin: 0 5rem;
    padding: 1rem 0.5rem;
}

.topNavLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.topNavLeft img {
    width: 50%;
    margin-left: 2rem;
}

.topNavEmpty {
    width: 40%;
}

.topNavRight {
    width: 30%;
}

.topNavRight a {
    text-decoration: none;
    color: #2E2E2E;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: 100;
    transition: 0.15s;
}

.topNavRight a:hover {
    border-bottom: 0.14em solid;
    transition: 0.15s;
    cursor: pointer !important;
}

#current {
    border-bottom: 0.16em solid;

}

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

.rightButton a {
    width: 100%;
}
@media screen and (max-width: 1200px) {
    .topNavEmpty, .topNavRight{
        display: none;
    }
    .topNavLeft{
        width: 100%;
    }
    .topNavLeft img{
        width: 200px;
    }

}
@media screen and (max-width: 600px){
    .topNavLeft img{
        width: 120px;
        margin: 0;
    }
}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bebas Neue';
}





.subheading{
    text-align: center;
    font-size: 2rem;
    padding-bottom: 0 !important;
    padding: 1rem 0;
    color: #2E2E2E;
    margin-top: 2rem;
}
.subheading h3{
    margin-bottom: 1rem;
}
.heading{
    text-align: center;
    font-size: 3rem;
    padding: 1rem 0;
    color: whitesmoke;
    background-color: #2E2E2E;
}

.heading h1 {
    margin: 0;
    padding: 0;
}

@media screen and (max-width:600px){
    .heading{
        font-size: 2rem;
    }
    .subheading{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:400px){
    .heading{
        font-size: 1.6rem;
    }
}






.outerMember{
    background-image: url(socialsync_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0rem 0.5rem;
}
.member{
    padding: 4rem 10rem;
}
.member p{
    color: #2E2E2E;
}
.member a{
    text-decoration: none;
    color: #2E2E2E;
}
.member a:hover{
    text-decoration-line: underline ;
}
.memberName h2{
    margin: 0.5rem 0;
    font-size: 2.3rem;
}
.memberName p{
    margin: 0;
    font-size: 1.3rem;
    font-weight: 100;
}
.memberContent{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4rem 0;
}
.memberImage{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}
.memberBio{
    text-align: left;
    width: 60%;
}
.memberImage img{
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
}
.memberLogo{
    display: flex;
    align-items: center;
    justify-content: left;
}
.memberLogo a{
    padding-right: 1rem;
}

.memberBreak{
    background-color: #2E2E2E;
    height: 50px;
}

@media screen and (max-width:1000px) {
    .member{
        padding: 3rem 4rem;
    }
}
@media screen and (max-width:800px) {
    .member{
        padding: 3rem 2rem;
    }
    .memberContent{
        display: block;
    }
    .memberImage{
        text-align: center;
        width: 100%;
    }
    .memberImage img{
        width: 50%;
    }
    .memberBio{
        width: 100%;
    }
}
@media screen and (max-width:400px) {
    .member{
        padding: 5rem 1rem;
    }
    .memberImage{
        text-align: center;
        width: 100%;
    }
    .memberImage img{
        width: 100%;
        padding-bottom: 1rem;
    }
    .memberBio{
        width: 100%;
    }

    .memberLogo{
        justify-content: center;
        padding-left: 1rem;
    }
    .memberName h2{
        font-size: 2rem;
    }
    .memberName p{
        font-size: 1rem;
        font-weight: 300;
    }
}






.contact{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(socialsync_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0rem 0.5rem;
    padding: 7rem 10rem;
    text-align: center;
}
.contact h1{
    font-size: 4rem;
    color: #2E2E2E;
}
.contact p{
    font-size: 1.5rem;
    font-weight: 100;
}

.contactButton{
    padding: 1rem 1.4rem;
    font-size: 1.2rem;
    border-radius: 20px;
    background-color: #2E2E2E;
    border: 0px solid #2E2E2E;
    transition: 0.15s;
    margin: 2rem 1rem;
    color: whitesmoke;
}
.contactButton:hover{
    background-color: #111111;
    cursor: pointer !important;
    transition: 0.15s;
    /* color: rgb(168, 168, 168); */
    transform: translateY(-0.4rem);
}

@media screen and (max-width:1000px) {
    .contact h1{
        font-size: 3rem;
    }
}

@media screen and (max-width:800px) {
    .contact{
        padding: 6rem 3rem;
    }
}
@media screen and (max-width:600px) {
    .contact{
        padding: 6rem 2rem;
    }
}
@media screen and (max-width:300px) {
    .contact{
        padding: 6rem 1rem;
    }
    .contact h1{
        font-size: 2.5rem;
    }
}





.footerInfo{
    text-align: center;
    padding: 5rem 10rem;
    background-color: #2E2E2E;
}

.footerInfo img{
    width: 20%;
    margin: 3rem 0;
    padding: 1rem 3rem;
    border-radius: 20px;
    background-image: url(socialsync_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.icons{
    display: flex;
    justify-content: center;
    align-items: center;
}
.icons i{
    margin: 1rem;
    font-size: 3rem;
    padding-bottom: 2rem;
    color: whitesmoke;
    transition: 0.15s;
}
.icons i:hover{
    cursor: pointer !important;
    transition: 0.15s;
    transform: scale(1.08);
}
footer {
    text-align: center;
    padding: 5px 0;
    background-color: #1d1d1d;
    bottom: 0;
    width: 100%;
    color: white;
  }
@media screen and (max-width: 800px){
    .footerInfo{
        padding: 5rem 5rem;
    }
    .footerInfo img{
        width: 200px;
    }
}
@media screen and (max-width: 500px){
    .footerInfo{
        padding: 5rem 2rem;
    }
    .footerInfo img{
        width: 120px;
    }
    .icons i{
        font-size: 2rem !important;
    }
}


.bottomNav{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 200px;
    background-color: whitesmoke;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0.3rem;
    border-radius: 20px;
    text-align: center;
}
.bottomNavButton{
    padding: 1rem;
    border-radius: 20px;
    transition: 0.2s;
    flex-grow: 1;
    /* background-color: rgb(235, 235, 235); */
}
.bottomNav a{
    text-decoration: none;
    color: #2E2E2E;
    width: 100%;
    font-family: sans-serif;
    font-size: 0.8rem;
}
.bottomNavButton:hover{
    background-color: rgb(215, 215, 215);
    transition: 0.2s;
}
#current2{
    background-color: rgb(215, 215, 215);
    border-radius: 20px;
}

@media screen and (min-width:1200px) {
    .bottomNav{
        display: none;
    }
}
