* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2c3e50;
  color: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  text-align: center;
  padding: 20px 0;
}

main ul {
  list-style: none;
  counter-reset: webcounter;
}

main ul li {
  background-color: #ecf0f1;
  color: #2c3e50;
  padding: 20px 40px;
  border-radius: 5px;
  margin: 40px 0;
  position: relative;
}

main ul li h5 {
  font-size: 20px;
}

main ul li .score {
  margin-left: 5px;
  color: #e74c3c;
}

main ul li .score::before {
  content: "[";
}

main ul li .score::after {
  content: "]";
}

main ul li::before {
  counter-increment: webcounter;
  content: counter(webcounter);
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: -15px;
  top: -20px;
  background-color: #e74c3c;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

main ul li:first-of-type::after, main ul li:nth-of-type(2)::after, main ul li:nth-of-type(3)::after {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

main ul li:first-of-type::after {
  background-image: url("../img/medal.svg");
}

main ul li:nth-of-type(2)::after {
  background-image: url("../img/medal (1).svg");
}

main ul li:nth-of-type(3)::after {
  background-image: url("../img/medal (2).svg");
}

main .quote {
  padding: 10px 0 30px 0;
  text-align: center;
}

main .quote span {
  display: block;
}

main .quote span::before {
  content: "\2014";
  margin: 0 5px;
}
/*# sourceMappingURL=style.css.map */