

body {
    background-color:#FFD700;
    color: #000000;
      font-family: "Zalando Sans Expanded", sans-serif;
    padding: 2em;
}
   
a {
    color : #000000;
}

.tiny {
   font-size: .5em;  
}

a:hover {
    background-color:#000000;
    color: #FFD700 ;
    
}


h1 { 
text-shadow: 3px 3px 2px white;

  background-image: linear-gradient(to top, red, yellow);

    font-size: 2.5em;
      text-align: center;
      font-family: "Shadows Into Light", cursive;

}


img {
    border: 1em double black ;
    border-radius: 2em;
}
    
 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 25%;
  margin: .5em;
  /*border: 1px solid black;*/
  border-radius: 10px;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 70%;
  display: block;
  margin: auto;
}
 