* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", Times, serif;
}
body {
  height: 100vh;
  width: 100vw;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.performance {
  background-color: white;
  height: 84%;
  width: 48%;
  padding: 3rem;
}
.performance-content {
  margin-left: 3rem;
  height: 100%;
}
ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
li {
  height: 5.5rem;
  padding: 1rem;
  border-radius: 0.3rem;
  box-shadow: 0rem 0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  position: relative;
}
li:first-child {
  order: 2;
}
li:nth-child(2) {
  order: 1;
}
li:nth-child(3) {
  order: 3;
}
li:nth-child(4) {
  order: 4;
}
li:last-child {
  order: 5;
}
li:last-child {
  box-shadow: none;
  background: linear-gradient(90deg, rgb(41, 147, 189), rgb(40, 185, 166));
  color: white;
  font-size: 1.35rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
dt {
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.5);
}
dd {
  font-weight: 500;
  font-size: 1rem;
}
li::before {
  position: absolute;
  content: "1";
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -3.5rem;
}
li:nth-child(2)::before {
  content: "2";
}
li:nth-child(3)::before {
  content: "3";
}
li:nth-child(4)::before {
  content: "4";
}
li:last-child::before {
  content: "=";
  border-radius: 0.2rem;
  background: linear-gradient(90deg, rgb(41, 147, 189), rgb(40, 185, 166));
}
@media (max-width: 640px) {
  :root {
    font-size: 10px;
  }
  .performance {
    height: 85%;
    width: 70%;
  }
  .performance-content {
    margin-left: 3rem;
    padding: 5rem 0;
    height: 100%;
  }
}
