.container {
   display: flex;
   gap: 20px;
   justify-content: center;
   align-items: center;
   padding: 40px;
   flex-wrap: wrap;
   background-color: #f0f0f0;
}

.div-1, .div-2, .div-3 {
   width: 220px;
   height: 150px;
   color: white;
   font-size: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div-1 {
   background: red;
   font-family: 'Courier New', Courier, monospace;
}

.div-2 {
   background: rgb(195, 208, 9);
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.div-3 {
   background: rgb(21, 233, 6);
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.div-1:hover, .div-2:hover, .div-3:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}