* {
	margin: 0;
	padding: 0;
	overflow: visible;
	font-family: sans-serif;
	border: 0;
}

html {
	font-size: 1vw;
}

body{
	background-color: #05053b;
	overflow-x: hidden;
}

#navbar{
	height: 10vh;
	width: 100vw;
	overflow: hidden;
	display: flex;
    flex-grow: 1;
	justify-content: center;
	align-items: center;
	background-color: #05053b;
	top: 0;
	position: fixed;
	padding: 1vh 0;
    transition: 0.4s;
	z-index: 99;
	/*font-size: 1.7vw;*/
	font-size: 2vw;
	border-bottom: 3px solid rgb(251, 225, 102);
}

#logoContainer{
	height: 10vh;
	width: 20vw;
	flex-grow: 1;
	transition: 0.4s;
	position: fixed;
	overflow: hidden;
	z-index: 100;
}

#headerLogo{
	height: 100%;
	width: 100%;
	object-fit: contain;
}

#navButtonsContainer{
	width: 100%;
	height: 60%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}

.navButtonsSideContainer{
	display: inline-flex;
	justify-content: space-between;
	/*width: 35vw;*/
	width: 38vw;
}

#navButtonsLeft{
	margin-left: 3vw;
}

#navButtonsRight{
	margin-right: 3vw;
}

.navbarButton{
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.navbarButton:hover{
	text-decoration: underline;
	color: lightgrey;
	font-weight: bold;
}

/*
=================
  MAIN ELEMENTS
=================
*/

#mainContainer{
    top: 15vh;
    width: 100vw;
    height: auto;
    /*border: 1px solid red;*/
    overflow: visible;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

#committeeTitle{
    color: white;
    text-align: center;
    font-size: 50px;
    margin-top: 20px;
}

.committeeMemberContainer{
    width: 870px;
    height: 230px;
    /*overflow: hidden;*/
    overflow: visible;
    margin: 40px auto;
}

.committeeMemberImageContainer{
    height: 230px;
    width: 230px;
    float: left;
    text-align: center;
    overflow: hidden;
    z-index: 32;
    position: relative;
}

.committeeMemberImage{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.committeeMemberWordsContainer{
    height: 100%;
    text-align: left;
    position: relative;
    float: left;
    overflow: visible;
    margin-left: 15px;
    width: 620px;
}

.committeeMemberName{
    font-size: 30px;
    color: rgb(255,255,255);
    display: inline-block;
    margin-left: 7px;
    padding-top: 1px;
    position: absolute;
}


.committeeMemberTitle{
    font-size: 85px;
    display: block;
    color: rgba(212,212,212, 0.7);
    margin-top: 44px;
    z-index: 1;
}

/*
===================
  MOBILE SETTINGS
===================
*/

@media all and (max-width: 500px){
    #navbar{
    	font-size: 2.1vw;
    }
    
    .navButtonsSideContainer{
    	width: 37vw;
    }
    
    #navButtonsLeft{
    	margin-left: 2vw;
    }
    
    #navButtonsRight{
    	margin-right: 2vw;
    }
    
    #committeeTitle{
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .committeeMemberContainer{
        /*width: 90%;*/
        width: 350px;
        height: 100px;
        margin: 15px auto;
    }

    .committeeMemberName{
        font-size: 17px;
        margin-left: 2px;
    }
    
    .committeeMemberImageContainer{
        height: 100px;
        width: 100px;
        float: left;
        text-align: center;
        overflow: hidden;
        z-index: 32;
        position: relative;
    }
    
    .committeeMemberWordsContainer{
        width: 220px;
    }
    
    .committeeMemberName{
        padding-top: 0;
    }
    
    .committeeMemberTitle{
        font-size: 31px;
        height: auto;
        overflow: visible;
        margin-top: 29px;
    }
    
    
}

