body {
  background-color: Linen;
}

h1 {
  color: CadetBlue;
  text-align: center;
  font-size: 50px;
}

h2 {
  color: CadetBlue;
  text-align: center;
  font-size: 25px;
}

p {
  color: CadetBlue;	
  font-family: verdana;
  font-size: 20px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: calc(25% - 20px);

}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;

}


@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}