*{
  margin:0;
  padding:0;
  font-family:sans-serif;

}
.banner{
  width: 100%;
  height: 100vh;
  background-image: url(ombre.png);
  background-size: cover;
  background-position: center;
}
.navbar{
  width:97%;
  margin: auto;
  padding:18px 0;
  display:flex;
  align-items: center;
  justify-content: space-between;
 
}
.logo{
  width: 220px;
  cursor:pointer;

}
.navbar ul li{
  list-style: none;
  display:inline-block;
  margin: 0 20px;
  position:relative;
}
.navbar ul li a{
  text-decoration: none;
  color:black;
  text-transform: uppercase;
}
.navbar ul li::after{
  content:"";
  height:1.7px;
  width:0;
  background:black;
  position:absolute;
  left:0;
  bottom:-3.5px;
  transition:0.5s;
}
.navbar ul li:hover::after{
  width:100%;
}
.content{
  width:100%;
  position:absolute;
  top:35%;
  transform:translateY(-50);
  text-align:center;
  color:black;
}
.content h1{
  font-size:196px;
  font-style:italic;
}
  

/*about page*/
*{
  margin: 0px;
  padding:0px;
  box-sizing:border-box;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.section{
  width: 100%;
  min-height:100vh;
  background-image: url(ombre.png);
  background-size: cover;
  background-position: center;
}
.container{
  width: 100%;
  display:block;
  margin:0px;
  padding-top: 100px;
  text-align:center;
 
}
.content-section{
width:55%;
line-height: 1.6;
font-family: fantasy;
}
.content{
  text-align: center;
  top:200px;
}



