body{
    margin: 0;
    padding: 0;
    background-color: rgb(52, 52, 52);
}

.header {
    overflow: hidden;
    display: flex;
    height: 100px;
    background-color: rgb(33, 58, 142);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    margin: 0;
    padding: 0;
    border-bottom-color: rgb(0, 26, 72) ;
    border-bottom-style: solid;
    border-width: 10px;
    z-index: 100;
    box-shadow: 0px 2px 10px rgb(0, 0, 0);

}

.left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger{
    height: 50px;
    margin-left: 24px;
    margin-top: 10px;
    cursor: pointer;

}

.middle{
    display: flex;
    justify-content: space-between;
}

.title{
    font-size: 30px;
    font-family: Jost, Arial;
    position: absolute;
    color: white;
    top: 52px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.right{
    display: flex;
    align-items: center;

}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background-color: rgb(29, 49, 113);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    font-family: Jost, Arial;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .emergency {
    font-family: Jost, Arial;
    font-size: 25px;
    color: white;
    padding-left: 10px;
  }

  input[type=text] {
    font-family: Jost, Arial;
    font-size: 25px;
    color: black;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #818181;
    padding-left: 40px;

  }

