body {
    background-color:#B30000;
    background-image: url('https://images.unsplash.com/photo-1679931565214-6bbfc6740d13?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat:  no-repeat;
    background-size: cover;
    color: #FFFFFF;
      font-family: "Anton", sans-serif;
      font-size: 1.12em;
      
      border: 0.5em ridge  yellow;

}

a {color: #FFFFFF;}
a:hover {
     background-color: #000000;
     color: #ffffff;
     text-decoration: underline;}




.tiny {
  font-size: .5em;
}
  
h1 {background-image:  linear-gradient( to right, red, yellow);
text-shadow:  3px 3px 3px black;
    font-family: "Anton", sans-serif;

font-size: 2.5em;
text-align: center;
}
  

img{
  border: 0.5em ridge color blue;
}


.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: 35%;
  margin: .5em;
  
  padding: 1em;
}

/* 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;
}