.black{
    width:100%;
    height:80px;
    background-color: rgb(31, 30, 30);
  }
  .black p{
    padding-top:20px;
    text-align: center;
    color:#cdd;
    font-size:20px;
  }
  span{
    text-decoration: underline;
  }
  #navbar{
    display:flex;
    width:100%;
    height:auto;
    margin:auto;
    background-color: white;
    position:sticky;
    top:0px;
    justify-content: space-around;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  #navbar div{
    display:flex;
    height:auto;
    width:auto;
    text-align:center;
    /* border:1px solid red; */
   
  }
  #left{
    display:flex;
    height:auto;
    width:98%;
    gap:20px;
   align-items:center;
    justify-content: space-around;
    margin-left:10px; 
    /* border:1px solid red; */
  }
  #left >div{
    justify-content:space-around;
    font-size:25px;
    text-align:center;
    cursor:pointer;
    color:rgb(80, 75, 75);
   
  }
  div> img{
     width:100px;
     margin-left:10px;
     align-items:left;
     /*margin-right:30px;*/
  }
  #right{
    display:flex;
    height:auto;
    width:50%;
    justify-content: space-around;
    margin-left:10px;
    align-items:center;
    /* border:1px solid red; */
  }
  #right div{
    justify-content:space-around;
    font-size:25px;
    text-align:center;
    padding:20px;
  }
  #right h5{
    text-align:center;
  }
  #right img{
    width:40px;
  }
  h5:hover{
    color: cornflowerblue;
  }




/* signin box */

* {
    margin: 0px;
    padding: 0pt;
    box-sizing: border-box;
  }
  body {
    background-color: rgb(243, 243, 243);
  }
  #signin {
    /* background-color: white; */
    width: 30%;
    padding: 60px;
    margin: auto;
    margin-top: 100px;
  }
  h1{
    margin-bottom:10px;
  }
  form>input,
  form>label {
    width: 100%;
    font-size: 20px;
    display: block;
    padding-top:10px;
    padding-bottom:10px;
    margin-left:-3px;
    margin-bottom: 10px;
  }
  input[type="submit"]{
    padding-top:10px;
    margin-top:10px;
    padding-bottom:30px;
    border-radius:30px;
    color:white;
    background-color:rgb(98, 121, 145) ; 
  }
  input[type="submit"]:hover{
    background-color:rgb(54, 64, 73) ; 
  }

  /* footer css */

  #footer{
    display:flex;
    height:auto;
    width:100%;
    margin-top:30px;
    background-color:rgb(98, 121, 145) ;
}
#footer>div{
    height:auto;
    width:15%;
    margin:5px;
    color:#ddd;
}
input{
    height:30px;
    width:30%;
    margin:15px;
    border:0px;
    border-radius: 5px;
}
button{
    height:32px;
    margin:15px;
    margin-left:-60px;
    border:0px;
    border-radius:5px;
}
button:hover{
  background-color:black;
  color:white; 
}
#footer1{
    float:left;
    display:flex;
    height:auto;
    width:100%;
    background-color:rgb(98, 121, 145) ; 
}
#footer1>div{
    height:100%;
    width:auto;
    font-weight: 700;
    font-size:.75rem;
    line-height:1.75em;
    margin-left:50px;
    color:#fff;
    text-align:left;
    margin: 0.4em 2px 0.4em 2px;
    cursor:pointer;
}
.vertical-line{
    border-left:3px solid #ddd;
    height:200px;
}
#footer2>p{
    text-align:left;
}
#footer3{
    display:flex;
    height:auto;
    width:40%;
    margin:auto;
    align-content:center;
    justify-content:center;
    gap:5px;
    /* border:1px solid red; */

}
#footer3>div{
    height:100%;
    width:8%;
    /* border:1px solid blue; */
}
#footer3>div> img{
    width:100%;
    margin:auto;
}
#footer4{
    height:auto;
    width:8%;
    margin:auto;
    margin-top:5px;
}
#footer4>img{
    width:100%;
    margin:auto;
}
a{
    text-decoration:none;
}