* {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 0;
}

body {
  background-color: #B6D6D4;
}

.main {
  margin: 0 auto;
  width: 60%;
  height: 100% ;
}

#guardians-list {
  margin: 0 auto;
  width: 100%;
}

.spacer {
  height: 63px;
}

.guardians-header {
 font-size: 80px;
 text-align: center;
 padding-top: 75px;
 padding-bottom: 75px;
 font-family: 'Lobster Two', cursive;
 color: #3D3C3A;
 text-shadow: 2px 0 black;
 letter-spacing: 1px;
 font-weight:bold;
}

.guardian-wrap {
  position: relative;
  display: inline-block;
  height: 300px;
  width: 25%;
  min-width: 250px;
  margin-left: 6.2%;
  margin-top: 30px;
  background-color: #333;
  border-radius: 15px;
  justify: center;
}

.guardian-wrap img {
  position: absolute;
  display: inline;
  margin-left: 32%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 2px solid #333;
  z-index: 1;
}

.info-wrap {
  height: 80%;
  width: 100%;
  margin-top: 20%;
  display: inline-block;
  background-color: white;
  border: 2px solid #333;
  overflow: auto;
  opacity: .89;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.info-wrap:hover {
  opacity: 1;
}

.info-wrap p {
  text-align: center;
  margin-bottom: 5px;
}

.name {
  margin-top: 60px;
  padding-bottom: 30px;
  font-weight: bold;
}

.footer {
  margin-top: 99px;
}
