body {
  background: #ffff76;
}

main {
  display: flex;
  flex: 1;
  justify-content: space-around;
  flex-wrap: wrap;
}

h1 {
  font-size: 35px;
  font-family: "Comic Sans MS", Sans-Serif;
  position: relative;
  text-align: center;
}

.item {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 30px;
  
}

.item img {
  border-style: none;
  vertical-align: middle;
  max-width: 150px;
}

.item .caption {
  font-size: 18px;
  text-align: center;
  position: relative;
  top: 20px;
  font-family: "Comic Sans MS", Sans-Serif;
  }
  
  /* Mobile Styles */
@media only screen and (max-width: 400px) {

}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
  }

/* Desktop Styles */
@media only screen and (min-width: 961px) {

}