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

html {
	font-size: 1vw;
}

body{
	background-color: #05053b;
}

#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: 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 CONTENT
================
*/

#mainContainer{
    top: 15vh;
    width: 100vw;
    height: 100vh;
    overflow-y: visible;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

#howToJoinContainer{
    width: 70%;
    position: relative;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
}

#title{
    margin: 20px auto 0 auto;
    font-size: 50px;
    text-align: center;
}

#howToJoinText{
    font-size: 25px;
    margin-top: 30px;
    text-align: justify;
    line-height: 1.35;
}

#contactContainer{
    width: 70%;
    height: auto;
	text-align: center;
    margin: 40px auto 0 auto;
}

.contactCaptain{
    color: white;
    display: inline-block;
    width: 45%;
    height: auto;
    margin: auto;
    padding: 5px 10px;
    overflow: hidden;
}

#contactCaptainLeft{
    float: left;
    border-left: 3px solid rgb(251, 225, 102);
}

#contactCaptainRight{
    float: right;
    border-right: 3px solid rgb(251, 225, 102);
}

.captainImageContainer{
    height: 140px;
    width: 140px;
    float: left;
    overflow: hidden;
}

#captainImageContainerLeft{
    float: left;
    margin-right: 10px;
}

#captainImageContainerRight{
    float: right;
    margin-left: 10px;
}

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

.captainName{
    margin-top: 10px;
    font-size: 2vw;
}

.captainEmail{
    margin-top: 30px;
    font-size: 1.4vw;
}

/*
==================
  MOBILE STYLING
==================
*/

@media all and (max-width: 500px){
    #navbar{
    	font-size: 2.1vw;
    }
    
    .navButtonsSideContainer{
    	width: 37vw;
    }
    
    #navButtonsLeft{
    	margin-left: 2vw;
    }
    
    #navButtonsRight{
    	margin-right: 2vw;
    }
    
    #mainContainer{
        width: 90vw;
    }
    
    #title{
        font-size: 30px;
    }
    
    #howToJoinContainer{
        width: 100%;
    }
    
    #howToJoinText{
        font-size: 16px;
    }
    
    #contactContainer{
        width: 100%;
        position: relative;
    }
    
    .contactCaptain{
        margin-bottom: 30px;
        display: block;
        width: 100%;
        position: relative;
        padding: 5px;
    }
    
    #contactCaptainLeft{
        border-left: 2px solid rgb(251, 225, 102);
    }
    
    #contactCaptainRight{
        border-right: 2px solid rgb(251, 225, 102);
    }
    
    #captainImageContainerLeft{
        margin-right: 5px;
    }
    
    #captainImageContainerRight{
        margin-left: 5px;
    }
    
    .captainName{
        margin-top: 10px;
        font-size: 20px;
    }
    
    .captainEmail{
        margin-top: 30px;
        font-size: 18px;
    }
}







