.underline{
  border-bottom: double 4px transparent;
  border-radius: 4px;
  background-image: linear-gradient(whitesmoke, whitesmoke), radial-gradient(circle at top left,#67b73c, #47d0d6);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.descCard{
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 10px;
  border-radius: 5px;
  min-width: 150px;
  width: 60vw;
  max-width: 500px;
  height: fit-content;
  background-color: white;
}

.cardTitle{
  border: 10px;
  font-size: 20px;
  border-bottom: double 4px transparent;
  border-radius: 4px;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left,#67b73c, #47d0d6);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.cardBody{
  font-size: 15px;
  color:rgb(69, 69, 69);
  background-color: white;
}

.spoiler{
  background-color: black;
  color: black;
  padding: 1px;
}

.spoiler:hover{
  background-color:white
}

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items:center;
}

.command{
  background-color: lightgrey;
  border-left: 4px solid grey;
  padding:2px
}

.originCard{
  background-color: transparent;
  width: 350px;
  height: 350px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
}

.originCardInside{
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.originCard:hover .originCardInside {
  transform: rotateY(180deg);
}

.babyOrigin, .adultOrigin {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 3px;
  border-radius: 5px;
  background: white;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.adultOrigin {
  transform: rotateY(180deg);
}

.originName{
  font-size: 17px;
  border-bottom: double 4px transparent;
  border-radius: 4px;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left,#67b73c, #47d0d6);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

ul{
  margin:10px;
  margin-left:17px;
  padding-top:10px;
  padding:5px;
}

li.positive{
  list-style-position: inside;
  list-style: symbols(cyclic "+");
}

li.neutral{
  list-style-position: inside;
  list-style: symbols(cyclic "±");
}

li.negative{
  list-style-position: inside;
  list-style: symbols(cyclic "−");
}