body {
    background-color:#DCDCDC;
    /*background-image: url('https://images.unsplash.com/photo-1503435824048-a799a3a84bf7?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); */
  color: #000000;
    font-family: "Coiny", system-ui;
    font-size: 1.5em;
    border: 1.2em ridge gray;
    padding: 2em;
    margin: 1.1em;
    cursor: wait;
    
}  
    
a{
    color:#292929;
}

h1 {
  font-family: "Cherry Bomb One", system-ui;
text-align: center;
 background-image: repeating-radial-gradient(red, yellow 30%);
text-shadow: 4px 4px 4px White;

}

img{
    border: 1.2em ridge gray;
}
        
    .tiny {
        font-size: .7em; }

.container {
  display: flex;
  align-items: center;
  justify-content: space-around ;
  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: .9em;
  border-radius: 10px;
  padding: 1.6em;
  text-align: center;
}

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


/* FORMATTING THE CITATIONS - DON'T COPY THIS IF YOU DON'T HAVE A "citation" CLASS */
.citation {
  text-align: center;
}    



