*{
    margin: 0;
    padding: 0;
    font-family: 'Balsamiq Sans', cursive;
    font-family: 'Nunito', sans-serif;

}

.members1{
    height: 40vh;
    width: 100%;
    border-radius: 5px;
    background-image: linear-gradient(rgba(4, 9, 30, 0.3),rgba(4, 9, 30, 0)),url(Images/Background2.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #f82249;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.nav-links ul li::after{
    content: ' ';
    width: 00%;
    height: 2.5px;
    background: red;/* border-radius: 15%; */
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;    
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 65px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
	background: linear-gradient(to right, #0e0e52 33%, #78c0e0 50%, #0e0e52 75%);
    background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition-duration: .5s;
    -o-transition-duration: .8s;
    -webkit-text-stroke: 2px #0e0e52;
}

.text-box:hover h1{
    -webkit-text-stroke: 3px rgb(0, 0, 0);
    color: transparent;
    font-size: 75px;
}

nav .fa{
    display: none;
}