body{
  background-color: rgb(237, 234, 229);
  padding: 0;
  margin: 0;
}
 
.navbar{
  width: 100%;
  height: 80px;
  background:linear-gradient(90deg,green 1.47%, blue 98.47%);
  overflow: hidden;
  background-repeat: no-repeat;
}
.navbar ul{
  width: 80%;
  height: 80px;
  margin: auto;
  list-style: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0; 
}
.navbar ul li{
  float: left;
}
.navbar ul li a{
  display: block;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  line-height: 60px;
}
.navbar ul li a:hover{
color: blue;
}
#navbar{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  scroll-behavior: smooth; 
}
#call{
  text-align: center;
  color: green;
}
footer{
  width: 100%;
  height: 100px;
  background-color: #003349;
}
footer p{
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 16px 16px;
}
.time{
  margin-top: 26px;
  width: 80%;
  margin: auto;
  background-color: #003349;
  padding: 8px 16px;
  border-radius: .4rem;
  color: #fff;
}
h1{
text-align: center;
color: #003349;
}