body {
  font-family: sans-serif;
  margin: auto;
  position: relative;
  text-align: center;
}


h1 {
  font-family: URW Chancery L, cursive;
  text-decoration: underline;
  font-size: 3em;
}

.profile {
  max-width: 33vw;
  display: inline-block;
  padding: 30px;
}

.pic img {
  width: 250px;
}

.image-cropper {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.profile:hover {
  color: teal;
  cursor: pointer;
}

.profile:hover img {
  box-shadow: 3px 3px 10px black;
}

a {
  color: inherit;
  text-decoration: inherit;
}

p.title {
  font-weight: 600;
  margin-bottom: 5px;
}

p.location {
  margin-top: 0px;
  font-style: italic;
}

footer {
  position:  fixed;
  bottom:  0px;
  right:  10vw;
  left:  10vw;
  text-align: center;
  background-color: dimgray;
  color: white;
  padding: 15px;
  box-shadow: inset 0px 3px 8px 0px black;
  border-radius: 20px 20px 0px 0px;
}

footer a {
  margin-right: 30px;
  display: inline-block;
  font-size: 15px;
}

footer a:hover {
  cursor: pointer;
  text-decoration: underline;
}