body {
  color: #3b3b3b;
  background-color: #fcfdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.card {
  display: flex;
  align-items: center;
}

.face {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.face img {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.face .outline {
  position: absolute;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  transition: all 1.5s ease-in-out;
}

.face .outline-small {
  width: 76px;
  height: 76px;
  border-color: currentcolor currentcolor currentcolor transparent;
}

.face .outline-big {
  width: 82px;
  height: 82px;
  border-color: currentcolor transparent currentcolor currentcolor;
}

.face:hover .outline-small {
  transform: rotate(360deg); 
}

.face:hover .outline-big {
  transform: rotate(-360deg); 
}

.data {
  margin: 0 0 0 16px;
}

.data .name {
  font: 14pt "PT Serif", serif;
}

.data .email {
  font: 10pt "PT Mono", monospace;
}

.nospam {
  display: none;
}
