h1 {
    margin: 20px 0;
  }


  .card {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    margin: 10px;
    flex: 1 1 300px;
    aspect-ratio: 4 / 3;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: blur(5px);
    opacity: 0.5;
  }

  .card img.loaded {
    filter: none;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .card:hover img {
    transform: scale(1.1);
  }

  .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 24px;
    font-weight: bold;
    color: orange;
    text-shadow: 1px 1px 3px #000;
  }

  @media (max-width: 768px) {
    .label {
      font-size: 18px;
    }
  }