*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inconsolata', monospace;
}

#dev{
    font-size: 20px;
}

.link1{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
}

a,a:hover{
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}

.top-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    height: 50px;
    width: 100%;
    background-color: aliceblue;
}
.hone{
    text-align: center;
}
.top-bar ul{
    list-style: none;
    display: flex;
}

.top-bar ul li{
    margin: 0px 15px;
    font-size: 20px;
}

.top-bar a{
    color: black;
}

.top-bar a:hover{
    color: red;
}

nav{
    background: #00235a;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a{
    color: #fff;
}

nav a:hover{
    color: #ef4b3f;
    font-family: 'Barlow Condensed', sans-serif;
}

.logo{
    flex: 1;
}

.logo a{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: 'Inconsolata', monospace;
}

.logo a:hover{
    color: #fff;
}

.logo img{
    width: 40px;
    margin-right: 10px;
}

.menu{
    display: flex;
    align-items: center;
    list-style: none;
}

.menu li{
    padding: 15px 10px;
    font-size: 16px;
}


.toggle{
    font-size: 30px;
    display: none;
}

@media screen and (max-width:600px){
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
    }
    .menu{
        margin-top: 15px;
        display: none;
    }
    .menu.active,.toggle{
        display: block;
    }
    .toggle{
        position: absolute;
        top: 15px;
        right: 20px;
    }
}

@media(max-width:425px){
    .top-bar{
        display: none;
    }
}

@media(max-width:320px){
    .logo a{
        font-size: 18px;
    }
}

@media(max-width:768px){
    .link1{
        font-size: 18px;
    }
}

.phase4{
    background-color: #2255a4;
}

.team-row .member h2{
    color: #ffffff;
}
.team-row .member p{
    color:lawngreen;
}

.title{
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    padding-top: 20px;
    position: relative;
}

.title:after{
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: linear-gradient(to left, transparent 5%, #fff);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.member{
    flex: 1 1 250px;
    margin: 20px;
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    max-width: 300px;
    transition: all 0.3s;
}

.member:hover{
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-20px);
}

.member img{
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #726a95;
    border-radius: 50%;
    margin: 0 auto;
}

.member h2{
    text-transform: uppercase;
    font-size: 24px;
    color: black;
    margin: 15px 0;
}

.member p{
    font-size: 15px;
    color: black;
    line-height: 1.6;
}

.footer{
    padding: 40px 0;
    background-color:#00235a; ;
}

.footer .si{
    text-align: center;
    padding-bottom: 25px;
    color: #ffffff;
}

.footer .si a{
    font-size: 24px;
    color: inherit;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
}

.footer .si a:hover{
    opacity: 0.9;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
    color: #ffffff;
}

.footer ul li a:hover{
    color: red;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}

p{
    color: #ffffff;
    font-size: 60px;
}