  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 20px;
  }

  h1 {
    text-align: center;
    margin-bottom: 30px;
  }

  .gallery {
    display: flex;
    gap: 720px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 300px;
    margin: auto;
  }

  .card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
  }

  .card img {
    display: block;
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    transform: rotate(180deg);
    transition: all 0.3s;
  }

  .card p {
    margin: 10px;
    font-size: 14px;
    color: #555;

  }