@keyframes rotation {
  0% {
    transform:translate(-70%, -30%) rotate(45deg)
  }
  100% {
    transform:translate(-70%, -30%) rotate(405deg)
  }
}
@keyframes rotation2 {
  0% {
    transform:translate(-80%, -20%) rotate(15deg)
  }
  100% {
    transform:translate(-80%, -20%) rotate(375deg)
  }
}
@html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Open Sans Condensed', sans-serif;
  text-align: center;
  overflow: hidden;

}
body::before {
  content:'';
  width: 800px;
  height: 800px;
  position: absolute;
  top:0;
  left:0;
  background: rgba(255,220,28,0.75);
  animation: rotation 50s infinite linear;
}
body::after {
  content:'';
  width: 800px;
  height: 800px;
  position: absolute;
  top:0;
  left:0;
  background: rgba(255,99,10,0.75);
  animation: rotation2 130s infinite linear;
}
.skills {
  display:flex;
  justify-content:center;
  align-items:center;
  padding:50px 0;
}
.skills > div {
  width: 300px;
  height: 300px;
  border:1px dotted #999;
  border-radius:5px;
  font-size: 30px;
  position: relative;
  margin:0 25px;
}

h2 {
  font-weight: normal;
  font-size: 30px;
  margin-top:35px;
}
img {
  width: 30%;
}
.level {
  height: 3px;
  background: #eee;
  width: 90%;
  margin:auto;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}
.progress {
  height: 3px;
  position: relative;
  width:0;
}
.alcool {
    color:#f18b6d;
}
.alcool .progress {
  background: #f18b6d;
}
.alcool .progress::after, .juice .progress::after {
  content:'';
  width: 10px;
  height: 10px;
  border-radius:5px;
  right:-1px;
  top:50%;
  transform:translateY(-50%);
  position: absolute;
}
.alcool .progress::after {
  background: #f18b6d;
}
.juice .progress::after {
  background: #6a4d8a;
}
.juice {
  color:#6a4d8a;
}
.juice .progress {
  background: #6a4d8a;
}
.progress i {
  color:#fff;
  background: inherit;
  border-radius:3px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right:0;
  font-style: normal;
  font-size: 16px;
  width: 30px;
  height: 30px;
  transform:translate(calc(50% - 4px), -140%);
  opacity:0;
}
.progress i::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3px 0 3px;
  position: absolute;
  left:50%;
  bottom:0;
  transform:translate(-50%, 90%);
  content:'';
}
.alcool .progress i::after {
    border-color: #f18b6d transparent transparent transparent;
}
.juice .progress i::after {
    border-color: #6a4d8a transparent transparent transparent;
}
.warning {
  color:gray;
  font-size: 30px;
  font-style: italic;
}
