@font-face {
  font-family: 'Exo';
  font-style: normal;
  font-weight: 400px;
  src: local('Exo Regular'), local('Exo-Regular'), url(https://fonts.gstatic.com/s/exo/v9/4UaOrEtFpBISc36m.ttf) format('truetype');
}
html {
  background: #161616;
}
body {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  color: #fff;
  width: 300px;
  margin: 20px auto;
}
.skills {
  position: absolute;
  transform: translate(-10%, 20%);
}
h2 {
  font-size: 2em;
  margin-bottom: 30px;
}
ul {
  padding-top: 50px;
}
ul > li {
  margin-bottom: 70px;
  background: #000;
  height: 5px;
  border-radius: 3px;
  border-left: 1px solid #111;
  border-top: 1px solid #111;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
ul > li em {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  position: relative;
  top: -30px;
}
ul > li span {
  height: 1px;
  margin: 2px 0;
  background: #2187e7;
  position: absolute;
  box-shadow: 0px 0px 10px 1px rgba(0, 198, 255, 0.4);
}
.English {
  width: 95%;
  animation: English 7s ease-out;
}
.Ukrainian {
  width: 90%;
  animation: Ukrainian 7s ease-out;
}
.Armenian {
  width: 80%;
  animation: Armenian 7s ease-out;
}
.French {
  width: 50%;
  animation: French 7s ease-out;
}
.German {
  width: 50%;
  animation: German 7s ease-out;
}
.Russian {
  width: 20%;
  animation: Russian 7s ease-out;
}
@keyframes English {
  0% {
    width: 0px;
  }
  100% {
    width: 95%;
  }
}
@keyframes Ukrainian {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@keyframes Armenian {
  0% {
    width: 0px;
  }
  100% {
    width: 80%;
  }
}
@keyframes French {
  0% {
    width: 0px;
  }
  100% {
    width: 50%;
  }
}

@keyframes German {
  0% {
    width: 0px;
  }
  100% {
    width: 50%;
  }
}

@keyframes Russian {
  0% {
    width: 0px;
  }
  100% {
    width: 20%;
  }
}