

* {
    margin: ;
}

body {
    background-color: #2FFEA4   ;
    color: #000000;
    border: 1em groove #05266e;
    padding: 2em;
    margin:1em ;
    border-radius:20px ;
    font-family: "Funnel Sans", sans-serif;
      background-image: linear-gradient(to top, #2FFEA4, yellow); 
      background-image: url('https://images.unsplash.com/photo-1511497584788-876760111969?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-repeat: no repeat;
 background-size: cover;

    
}

main {background-color: #2FFEA4   ;
    
}







img {
    border: .7em ridge #3d9ad4   ;  
   border: 1px solid white;
    border-image: linear-gradient(125deg, red 0%, yellow 25%, green 50%, blue 75%, purple 100%) 1;
    border-width: 4px;  
}




h1 {
      font-family: "Hachi Maru Pop", cursive;
      font-size: 3em ;
      text-align: center ;


}

a {
    color: #0011FF;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

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

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES */
  flex-basis:40%;
  margin: 1.5em;
  border: 1px solid black;
  border-radius: 10px;
  padding: 1em;
}

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

/* ...and then apply it: */
.bounce {
   animation-duration: 350ms;
   animation-name: bounce;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
   display: inline-block;
}









