
#nav{
    width: 100%;
    height: 90px;
    /* border: 3px solid black; */
    display: flex;
    background-color: rgb(12, 12, 14);
    
}

a{
    color: rgb(242, 246, 242);
    background-color: transparent;
    text-decoration: none;
    font-size: medium;
}
.logo{
  width: 10%;
  height: 90px;
  /* border: 2px solid black; */
  margin-left: 50px;
  cursor: pointer;
}
.logo >.logoimg img{
    width: 95%;
    height: 70px;
}
.navele{
    margin: auto;
    width: 30%;
    height: 90px;
    padding-left: 150px;
    margin-left:180px;
    align-items: center;
    display:flex;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;

}
.navele{
   transition: transform .2s;
   margin: 0 auto;
}
.navele:hover {
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(1.3); 
}
.navtxt{
    text-decoration: none;
    font-size: 15px;
   }
  .navtxt:hover{
    color:royalblue
  } 


.bar{
    width: 270px;
    height: 60px;
    /* border: 2px solid blue; */
    margin-right: 85px;
    align-items: center;
    margin-top: 15px;
    display: flex;
    font-size: medium;
}



  .login{
    padding: 15px 32px;
    background-color: rgba(22,125,200,1);
    /* text-decoration: none; */
    color: white;
    border-radius: 10px;
    text-decoration: none;
  }
  .login:hover{
    transform: scale(0.8);
    }

.signup{
    padding: 15px 32px;
    background-color:rgba(22,125,200,1);
    /* text-decoration: none; */
    color: white;
    border-radius: 10px;
    text-decoration: none;
   }
   .signup:hover{
    transform: scale(0.8);
    }
    #burger {
      display: none;
      }
    
    #burger {
      height: 100%;
      /* width: 40%; */
      font-family: sans-serif;
      background-color: white;
      display: none;
      }
      #burger > div {
      transition: color 0.3s ease;
      padding-top: 10px;
      font-size: large;
      padding: 2%;
      /* background-color: #902735; */
      font-weight: 600;
      background-color: white;
      color:  #00053d;
      }
      #burger > div:hover {
      width: 96%;
      border-radius: 3px;
      background-color: #b5d0f8;;
      color: #00053d;
      /* color: #FC2779; */
      }
/* nav complete */



      body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    
    header {
        background-color: rgb(12, 12, 14);
        color: white;
        padding: 20px;
    }
    
    h1 {
        margin: 0;
    }
    
    nav {
        background-color: rgb(12, 12, 14);
        color: #f6f7f8;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px;
    }
    
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    
    li {
        display: inline-block;
        margin-right: 20px;
    }
    
    li:last-child {
        margin-right: 0;
    }
    
    a {
        color: white;
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    main {
        padding: 20px;
    }
    
    h2 {
        margin-top: 40px;
    }
    h2:hover{
        text-decoration: underline;
        color: rgba(22,125,200,1);
        transform: scale(1) 
    }
    
    footer {
        background-color: rgb(12, 12, 14);
        border-top: 1px solid #e5e5e5;
        color: #777;
        padding: 20px;
        text-align: center;
    }
    @media screen and (min-width: 501px) and (max-width: 1000px){
        .logo{
            display: block;
          }
          .logo>.logoimg img{
            height:90px
          }
          .navele{
            display:none
          }
          #butt{
            margin-left: 150px;
            display: flex;
            flex-direction: row;
          }
    }
    