body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  margin: 0;
  height: 100%;
}

a {
  color: #333;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: #ff5722;
}

.canvas-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #99C8DF;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
}

.content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 10%;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.13);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.13);
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.13);
}

.content > p:last-child {
  margin-bottom: 0;
}

h1 {
  font-weight: 700;
  font-size: 1.75em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.profile-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.5);
}

.profile {
  width: 200px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
