body {
    background-color:	#15024B   ;
    color: #10B9DA ;
      font-family: "Anton", sans-serif;  
      padding:3em   ;
}

a {
    color:#FFFFFF;
}

    .small {
        font-size: .5em;
    }
    
    a:hover {
         background-color:	#10B9DA  ;
    color: #15024B ; 
    padding: 2em;
    }


    img{
        border: 2em solid black;
        -moz-border-radius: .5em;
    }
        
        h1 {
             background-image:  radial-gradient(#FFFFFF, #0000FF, #121212);
             text-shadow: 1px 3px 2px black;
             
        font-size:  3em;
        text-align:center ;
        
                font-family: "Alfa Slab One", serif;;
        }
   
        p{
            font-size: 2em;
            text-align: center;
          
        } 
        
        .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border:1px solid white;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 42%;
  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: 90%;
  display: block;
  margin: auto;
}

/* BREATHE */
/* Create the animation... */
@keyframes breathing {
   0% {
      transform: scale(0.5);
   }
   100% {
      transform: scale(1);
   }
}

/* ...and then apply it: */
.breathe {
   animation-duration: 3s;
   display:inline-block;
   animation-name: breathing;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}

