#teamgrid {
  padding: 50px 5%;
  text-align: center;
}

#teamgrid * {
  text-decoration: none;
}

#teamgrid .member {
  display: inline-block;
  margin: 20px;
  width: 192px;
  height: 256px;
  position: relative;
}

#teamgrid .member a {
  overflow: hidden;
  border-radius: 10px;
  background-color: #EA3156;
  position: absolute;
  top: 0;
  left: 0;
  border: solid 0 #EA3156;
  transition: top 0.3s ease, border-width 0.3s ease, left 0.3s ease;
  width: 100%;
  height: 100%;
}

#teamgrid .member:hover a, #teamgrid .member a:focus {
  top: -25px;
  border-width: 8px;
  left: -8px;
}

#teamgrid .member a {
  color: white;
  display: block;
  width: 100%;
  height: 100%;
}

#teamgrid .member .displayname {
  margin: 2px;
  font-size: 1.25em;
}

#teamgrid .member .username {
  margin: 5px;
  font-size: 1.02em;
  color: #ddd;
}

#teamgridwrapper .bottom, #teamgridwrapper .top, #teamgrid {
  background-color: var(--main-bg-colour);
}

#teamgridwrapper .bottom, #teamgridwrapper .top {
  height: 100px;
}