

body {
background-color: #00BFFF;
color: #000000 ;
border: .25em solid black;
border-radius: 1em;
padding: 1.5em;
margin: 0em;
}

a {
    color:#000000;
}
h1 {
            font-size: 3.5em;
            text-align: center;
            font-family: "Instrument Serif", serif;
background-image: linear-gradient(to top, #00BFFF,#00A1D6 );
padding:1.5em;
text-shadow:0px 6px 3px black;
color: #0000AD;

        }
    
    
        p {
            font-size: 100%;
            text-align: justify ;
            font-family: "Instrument Serif", serif;
        }
        
        img{
            border: .2em double black;
            border-radius: 2em;
        }
        
        .small{
            font-size: .6em;
        }
        
        a:hover {
            background-color: #000000;
            color: #00BFFF ;
            border-radius: 5px;
        }
        
        li{
            line-height: 1.5em;
        }
        
.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: 46%;
  margin: .5em;
  padding: 1em;
  text-align: center;
}

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

/* BOUNCE */
/* Create the animation... */
@keyframes bouncing {
   from {
      transform: translateY(0px);
   }
   to {
      transform: translateY(-20px);
   }
}

/* ...and then apply it: */
.bounce {
   animation-duration: .5s;
   animation-name: bouncing;
   animation-iteration-count: 8;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
}



