.badan {
  /* background-color: rgb(83, 248, 111); */
  margin-top: -12px;
}

.badan a {
  display: block;
  text-decoration: none;
  padding: 0.8rem;
  background-color: hsla(0, 100%, 90%, 0.3);
  color: black;
  border-bottom: rgb(255 255 255) 0.2rem solid;
  transition: 0.4s;
  /* margin: 0.5rem 0rem 0.5rem 0rem; */
  position: relative;
  z-index: 1;
}

.badan .fa {
  padding-right: 10px;
}

.kepala2 {
  background: #830000;
  color: #fff;
  padding: 10px 10px;
  border-bottom: solid #f5d453;
  font-weight: bold;
  border-radius: 10px 10px 10px 10px;
}

.badan a:hover {
  background-color: #f5d453;
  box-shadow: gray 0px 0px 1px 0px;
  color: black;
}

.badan a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: #830000;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: 800ms;
}

.badan a:hover::after {
  transform: scaleX(1);
}