@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@500&display=swap');

.headerDiv {
  /* display: block; */
  z-index: 100;
  position: fixed;
  top: 0;
  height: 170px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-image: linear-gradient(140deg, lightblue, white 75%, lightgrey);  
}

.headerTitle {
  color: darkcyan;
  text-align: center;
}

.headerTitle h1 {
  font-family: 'El Messiri';
  color: darkgreen;
  font-size: 45px;
  line-height: 0px;
  padding-top: 10px;
}

.headerTitle h2 {
  font-family: 'El Messiri', sans-serif;
  color: darkgreen;
  font-size: 32px;
  line-height: 0px;
  padding-top: 25px;
}

.headerTitle h4 {
  font-family: 'El Messiri', cursive;
  font-style: italic;
  color: darkblue;
  font-size: 16px;
  line-height: 0px;
  padding-top: 20px;
}

.owlImg {
  margin-top: 20px;
}

hr {
  border-width: 2px;
  margin-top: -10px;
  width: 80%;
}


@media screen and (max-width: 800px) {
  .headerTitle h2 {    
    font-size: 22px;
  }

  .headerTitle h4 {
    font-size: 12px;
  }

}