        body {
          background-color: 	#0000CD ;
          color: #CFCFCF;
            font-family: "Macondo", cursive;
            font-size: 1.2em;
            padding: 1.8em;

        
        }
        
        h1 {
            font-family: "Playfair Display", serif;
            font-size: 4em;
            text-align: center;
        }
        
        
        a {
            color: #CFCFCF;
        }
        
        a:hover {
        
            background-color: #CFCFCF;
            color:#0000CD ;
            border-radius:20px;
            cursor: none;
        }
        
    img {
        border: 1em groove grey;
    }
    
    .zoom {
        transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  margin: 10px;
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;

    }    
    .zoom:hover {
          box-shadow: 1px 10px 10px -10px rgba(0, 0, 24, 0.5);
  transform: scale(1.2);
    }
        
        .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 */
          flex-basis: 28%;
          margin: 1.5em;
          border: 1px solid black;
          border-radius: 10px;
          padding: 1em;
        }
        
        .box img {
          max-width: 30%;
          display: block;
          margin: auto;
        }
        
        .zoom {
        transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  margin: 10px;
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;

    }    
        
        
        