* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
.wrapper {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}
.words {
  margin-left: 10px;
}
.name {
  font-weight: bold;
  font-size: 250%;
}
.bio {
  font-style: italic;
  font-size: 120%;
}

@media (max-width: 650px) {
  .avatar {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
  .wrapper {
    flex-direction: column;
  }
  .words {
    text-align: center;
    margin-left: 0;
  }
}

@media (min-width: 1400px) {
  .avatar {
    width: 350px;
    height: 350px;
    margin-bottom: 20px;
  }
  .name {
    font-size: 350%;
  }
  .bio {
    font-size: 250%;
  }
}
#loading {
  -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(359deg);
  }
}
