*{
  margin: 0
  padding: 0
  font-family: sans-serif;}

body{
background-image:  url(2.jpg);
 background-size: cover;
 background-position: auto;
 font-family: sans-serif;
}
.example{
  text-align:  left;
  font-size: 25px;
  color: white;

}
.navbar{
  width: 100%;
  margin: auto;
  padding: 35px 0;
  display: flex;
  align-items: right;
  justify-content: right;
}

.navbar ul li{
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  position: relative;
}
.navbar ul li a{
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.navbar ul li::after{
  content: '';
  height: 5px;
  width: 0%;
  background: red;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.2s;
}
.navbar ul li:hover::after{
  width: 100%;
}
.content{
  width: 100%;
  position: static;
  top: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}
.content h2{
  font-size: 35px;
  margin-top: 150px;
}
.content p{
  margin: 20px auto;
  font-weight: 100;
  line-height: 25px;

}
