* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #eee;
  font-family: 'Lato', sans-serif;
}
body .container {
  width: 600px;
  font-size: 1.2em;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin:30px auto;
}
body .container .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0px 20px;
  transition: all 0.3s;
  color: white;
}
body .container .box.box1 {
  background-color: #7986CB;
}
body .container .box.box2 {
  background-color: #FF8A65;
}
body .container .box.box3 {
  background-color: #F06292;
}
body .container .box.box4 {
  background-color: #4DB6AC;
}
body .container .box.box5 {
  background-color: #9986CB;
}
body .container .box.box6 {
  background-color: #5F8A65;
}
body .container .box.box7 {
  background-color: #30C292;
}
body .container .box.box8 {
  background-color: #FC00FF;
}
body .container .box.box9 {
  background-color: #7FCFCB;
}
body .container .box.box10 {
  background-color: #EE84CB;
}
body .container .box.box11 {
  background-color: #CCC6CB;
}
body .container .box.box12 {
  background-color: #66C3CB;
}
body .container .box.box13 {
  background-color: #FCC3CB;
}
body .container .box.box14 {
  background-color: #99C3CB;
}
body .container .box .name {
  width: 300px;
}
body .container .box .name h4, body .container .box .name h5 {
  font-weight: 300;
}
body .container .box .name h5 {
  font-size: 0em;
  line-height: 1.5;
}
body .container .box p {
  font-size: 0.8em;
  font-weight: 300;
}
body .container .box:before {
  content: "";
  height: 0px;
  width: 0px;
  border: 2px solid white;
  border-radius: 50%;
  margin-left: 5%;
  background-color: white;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body .container .box.box1:before {
  background-image: url("../image/001.gif");
}
body .container .box.box2:before {
  background-image: url("../image/002.gif");
}
body .container .box.box3:before {
  background-image: url("../image/003.gif");
}
body .container .box.box4:before {
  background-image: url("../image/004.gif");
}
body .container .box.box5:before {
  background-image: url("../image/005.gif");
}
body .container .box.box6:before {
  background-image: url("../image/006.gif");
}
body .container .box.box7:before {
  background-image: url("../image/007.gif");
}
body .container .box.box8:before {
  background-image: url("../image/008.gif");
}
body .container .box.box9:before {
  background-image: url("../image/009.gif");
}
body .container .box.box10:before {
  background-image: url("../image/010.gif");
}
body .container .box.box11:before {
  background-image: url("../image/011.gif");
}
body .container .box.box12:before {
  background-image: url("../image/012.gif");
}
body .container .box.box13:before {
  background-image: url("../image/013.gif");
}
body .container .box.box14:before {
  background-image: url("../image/014.gif");
}
body .container .box:hover:before {
  content: "";
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: 0%;
  transition: all 0.4s;
}
body .container .box:hover {
  height: 120px;
  transition: all 0.3s;
}
body .container .box:hover .name h5 {
  font-size: 0.7em;
  transition: all 0.6s;
}
