div div{
  width: 500px;
}
.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;
  margin-bottom:30px;
}
h1{
  margin:0;
}

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::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 5px;
  border-radius: 5px;
  background-color: white;
  transition: width 0.3s ease;
}

header a:hover::after {
  width: 100%;
}
body{
  margin:0;
  padding:0;
  background-color: #f4f1ea;
}
b{
  padding: 5px;
  border-radius: 15px;
  font-size: 15px;
}
h5{
  font-weight:normal;
}