body {
    background-color: BF9F84;
  }

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   justify-content: center;
  }

  .box {
    width: 500px;
    overflow: hidden;
    text-align: center;
    background-color: #bfbfbf;   
    transition: transform 0.3s ease;
  }

  .box:hover {   
    transform: scale(1.05);
  }

  .box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .box .content {
    font-family: "Alan Sans", sans-serif;
  }
  .box .content h3 {
    padding: 1px;
    margin: 0 0 10px;
    font-size: 20px;
    color: #000000;
  }
  .box .content p {
    padding: 8px;
    font-size: 14px;
    color: #555;
  } 
