body{
  margin:0;
  padding:0;
  background-color: #f4f1ea;
}
header{
  justify-content:center;
  position: relative;
  top: 0;
  left: 0;
  right: 0; 
  display: flex;
  gap: 200px;
  background-color: rgb(175, 165, 165);
  font-weight:bold;
  font-size:20px;
  margin-bottom: 20px;
  padding: 15px;
}
a{
  text-decoration:none;
  color:white;
  display: inline-block;
  position: relative;
}
a:hover:after{
  width: 100%;
}
a::after{
content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  bottom: -4px;
  border: 0px solid white;
  border-radius: 5px;
  background-color: white;
  transition: width 0.3s ease;
}
.text{
  max-width: 700px;
  width: 100%;
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  margin:0 auto;
    text-align:center;
    margin-bottom:30px;
}
h1{
  margin:0;
}
h2{
  font-weight: bold;  
}
h4{
  width: 500px;
  margin:0 auto;
}