@import url("https://fonts.googleapis.com/css?family=Questrial");

body {
  font-family: "Questrial", sans-serif;
}

button {
  font-family: "Questrial", sans-serif;
}

.outer {
  position: absolute;
  height: 400px;
  width: 400px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.3);
  background: linear-gradient(to top left, #819CA9 0%, #29434E 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center {
  position: absolute;
  height: 300px;
  width: 320px;
  top: 50px;
  left: 40px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
}

.profile {
  float: left;
  height: 320px;
  width: 200px;
  text-align: center;
}
.profile .image {
  position: relative;
  height: 70px;
  width: 70px;
  margin: 40px auto 0 auto;
}
.profile .image .circle-1, .profile .image .circle-2 {
  position: absolute;
  box-sizing: border-box;
  height: 76px;
  width: 76px;
  top: -3px;
  left: -3px;
  border-width: 1px;
  border-style: solid;
  border-color: #007C91 #007C91 #007C91 transparent;
  border-radius: 50%;
  transition: all 1.5s ease-in-out;
}
.profile .image .circle-2 {
  height: 82px;
  width: 82px;
  top: -6px;
  left: -6px;
  border-color: #007C91 transparent #007C91 #007C91;
}
.profile .image img {
  display: block;
  border-radius: 50%;
}
.profile .image:hover {
  cursor: pointer;
}
.profile .image:hover .circle-1, .profile .image:hover .circle-2 {
  transform: rotate(-360deg);
}
.profile .image:hover .circle-2 {
  transform: rotate(360deg);
}
.profile .name {
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
}
.profile .job {
  font-size: 14px;
  line-height: 18px;
}
.profile .actions {
  margin-top: 33px;
}
.profile .actions .btn {
  box-sizing: border-box;
  display: block;
  height: 30px;
  width: 120px;
  margin: 0 auto 10px auto;
  background: none;
  border: 1px solid #00ACC1;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 400;
  color: #00ACC1;
  transition: all 0.3s ease-in-out;
}
.profile .actions .btn:hover {
  background: #00ACC1;
  color: white;
  cursor: pointer;
}

.stats {
  float: left;
}
.stats .box {
  box-sizing: border-box;
  height: 100px;
  width: 120px;
  background: #5DDEF4;
  text-align: center;
  padding-top: 30px;
  transition: all 0.4s ease-in-out;
}
.stats .box:hover {
  background: #18FFFF;
  cursor: pointer;
}
.stats .box:nth-child(2) {
  margin: 1px 0;
}
.stats span {
  display: block;
}
.stats .value {
  font-size: 24px;
  font-weight: 600;
}
.stats .parameter {
  font-size: 14px;
}
