
ul {
  padding-left: 0;
}

li {
  list-style-type: none;
}

/*body {
  margin: 0;
  padding: 0;
  background: #FFF3E6;
  font-family: 'Inter UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}*/



.feature {
  display: block;
  position: relative;
  color: blue;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 400;
  padding-bottom: 15px;
  transition: color .15s;
}
.feature:hover {
  color: #0B3566;
  cursor: default;
}

.explanation {
  display: none;
  text-align: left;
	font-size: 15px;
	position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(100% - 320px);
  z-index: 1;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
}

.more {
  font-size: 1.5rem;
  font-weight: 500;
  color: #8497B0;
}

.overlay {
  display: none;
  background-color: rgba(240, 240, 250, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes reveal {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.show {
  display: flex;
  align-items: center;
  animation-name: reveal;
  animation-duration: .25s;
}
