@import url(https://fonts.googleapis.com/css?family=Bigshot+One);
main {
  margin-left: calc(50% - 150px);
}
#head {
  height: 250px;
  width: 250px;
  background-color: #222;
  border-radius: 50%;
  margin-top: 50px;

  display: grid;
  grid-template-rows: 1fr 1fr 20px 1fr 0.8fr;
  grid-template-columns: 1fr 1fr 1fr;
}

#eyes {
  grid-row-start: 2;
  grid-column: 1/4;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

#mouth {
  grid-row-start: 4;
  grid-column: 1/4;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

#nose {
  grid-column-start: 2;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 22px solid #444;
  border-radius: 50%;
  justify-self: center;
}

.cheek {
  border: 2px solid #444;
  border-color: transparent #444 #444 #444; 
  border-radius: 70% / 50% 50%;
  width: 30%;
  height: 100%;
  align-self: center;
  margin-top: -60%;
}

#left-cheek {
  justify-self: right;
}

.eye {
  width: 20%;
  height: 40%;
  background-color: #efefef;
  border-radius: 50%;
}

#left-eye {
  grid-column: span 1/2;
  justify-self: center;
  align-self: center;
}

#right-eye {
  grid-column: span 2/4;
  justify-self: center;
  align-self: center;
}

#left-ear {
  grid-column-start: 1;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #222;
  transform: rotate(330deg);
  margin: -40px 0 0 -20px;
}

#right-ear {
  grid-column-start: 3;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #222;
  transform: rotate(30deg);
  margin: -40px -20px 0 0;
}

#collar {
  margin: 0 -26px;
  grid-column: 1/4;
  height: 20px;
  border: solid 25px;
  border-color: transparent transparent #98ff98 transparent;
  border-radius: 50% / 10px 10px 50px 50px;
  align-self: center;
  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

#tag-ring {
  grid-column-start: 3;
  grid-row-start: 1;
  background-color: gold;
  width: 10px;
  height: 25px;
  margin-top: 18px;
  transform: rotate(355deg);
  overflow: hidden;
}

#nameplate {
  background-color: gold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  grid-column-start: 2;
  justify-self: right;
  margin: -5px;      
}

#name {
  display: block;
  font-family: 'Bigshot One', serif;
  font-size: 18px;
  padding: 15px 6px;
  transform: rotate(355deg);
  text-shadow: 0px 1px 1px yellow;
}

#body {
  height: 200px;
  width: 200px;
  background-color: #222;
  border-radius: 1em;
  margin: -75px 0 0 25px;
  overflow: hidden;

  display: grid;
  grid-template-rows: 0.8fr 0.5fr 1fr;
  grid-template-columns: 1fr 3fr 1fr;
}
#chest {
  grid-row-start: 3;
  grid-column-start: 2;
  background-color: #efefef;
  border-radius: 50% 50% 0 0;
}
