@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}
h1::before{
    display: inline-block;
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../images/logo1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

img{
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../images/logo1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    /* background: linear-gradient(#24252A,#474952); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10px;
    border-bottom: 4px ridge #0088A9;
}

.logo{
    cursor: pointer;
}

.nav_links{
    list-style: none;

}
.nav_links li{
    display: inline-block;
    padding: 0px 20px;

} 
.nav_links li ul{
    display: none;
}
.nav_links li:hover ul{
    display: flex;
    flex-direction: column;
}

.nav_links li a{
    transition: all 0.3s ease 0s;

} 

.nav_links li a:hover{
    color: #0088A9;
} 


button{
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(0,136,169,0.6);

}