html{
  height: 100%;

}
body{
  height: 100%;
  background-color: rgb(244, 243, 241);
  margin: 0;
}
p{
  margin: 0;
  font-family: "leaguespartan webfont",sans-serif;
  
}
.wrapper{
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  grid-template-rows: 12% 88%;
}

.header{
  grid-row: 1;
  grid-column: 2/3;
  width: 100%;

  height: 103px;
  background-color: rgb(255, 255, 255);

  display: flex;
  align-items: center;
  justify-content: space-around;
}

.left-section{
  height: 80px;
  background-color: rgb(255, 255, 255);

  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

.logo{
  height: 80px;
}

.title{
  margin-left: 10px;
}

.Tull{
  font-size: 30px;
  color: rgb(0, 153, 191);
}

.middle-section{
  flex: 0;
  margin-right: 35px;
  margin-left: 70px;
  max-width: 500px;
  display: flex;
  align-items: center;
}

.search-bar {
  flex: 1;
  height: 36px;
  padding-left: 10px;
  font-size: 16px;
  border-color: 1px solid rgb(192, 192, 192);
  border-radius: 18px;
  outline: 0;
  width: 350px;
}

.search-button {
  height: 42px;
  width: 60px;
  background-color: rgb(0, 153, 191);
  border-width: 2px;
  border-style: solid;
  border-color: rgb(95, 95, 104);
  border-radius: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: rgb(143, 143, 157);
  margin-left: -30px;
  margin-right: 10px;
  cursor: pointer;
}

.search-icon{
  height: 100%;
}

.right-section{
  height: 50px;
}

.hamburger{
  height: 50px;
  cursor: pointer;
}

.header-background{
  width: 100%;
  height: 100%;
  grid-row: 1/2;
  grid-column: 1/4;
  background-color: white;
}
