* {
  box-sizing: border-box;
}

body {
  /*These styles will allow the content to center
   nicely on the screen*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  min-height: 100vh;
  margin: 0;
  flex-direction: column;

  background: #355C7D;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #C06C84, #6C5B7B, #355C7D);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #C06C84, #6C5B7B, #355C7D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

img {
  object-fit: cover;
  height: 30rem;
  width: 30rem;
}

figcaption {
  color: #000;
  text-align: center;
  font-size: xx-large;
  font-weight: bold;
  margin-top: 2rem;
}

.polaroid {
  background-color: #fff;
  padding: 1rem 1rem 3rem;
  box-shadow: 5px 7px 4px #888;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #DFC5FE;
    color: #000;
    text-align: center;
}