body {
  font-family: "Grandstander", sans-serif;
  background: rgb(107,134,255);
	background: linear-gradient(140deg, rgba(107,134,255,1) 0%, rgba(0,82,255,1) 100%);
  background-repeat: no-repeat;
  min-height: 1250px;
}

h1 {
  font-family: "Short Stack", sans-serif;
  text-align: center;
}

p {
  margin: 0px;
}

.box {
  background: rgb(232,236,255);
  background: linear-gradient(140deg, rgba(232,236,255,1) 0%, rgba(163,192,255,1) 100%);
  width: 100%;
  padding: 0.65em;
  margin: 0.65em;
  border: 3px solid #1e3f88;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid black;
}

.header {
  background: rgb(255,255,255);
	background: linear-gradient(140deg, rgba(255,255,255,1) 0%, rgba(205,221,255,1) 100%);
  text-align: center;
  padding: 0.5em;
  border: 3px solid #1e3f88;
}

.box, .header {
  border-radius: 10px;
}

#content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media(min-width: 600px) {
  .box {
  	width: 40%;
  }
}
@media(min-width: 950px) {
  .box {
  	width: 20%;
  }
}