#nav{
  background-color: white;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
  
#nav-logo{
  width: fit-content;
  height: 100%;
  display: flex;
}

#nav-logo img{
  height: 100px;
  align-self: center;
}

#nav-logo img{
  height: 100px;
  align-self: center;
}


#nav-nav{
  width: fit-content;
  height: 100%;
    
}

#nav-nav ul{
margin-left: 30px;
}
#nav-nav ul li{
  display: inline;
  float: left;
  
  
}
#nav-nav ul li a{
  padding: 0 10px;
  line-height: 100px;
}

#nav-nav ul li a:hover{
    color: green;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#nav-sm{
 width: fit-content;
  height: 100%;
    display: flex;
}

#nav-sm img{  
width: 50px;
height: 50px;
align-self: center;
}

#main{
  text-align: center;
}
body{
    background-color: #00415a;
    color: black;
    font-family: 'Playfair Display', serif;
  }
a{
  cursor: pointer;
}
a:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
button{
  cursor: pointer;
}
.login .login-inp{
  border-color: black;
  border: 20px;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');