*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  h1{
    padding: 8px 16px;
  }
  
  img{
    user-select: none;
    -webkit-user-select: none;
  }
  
  .wrapper {
    display: grid;
    grid-template-columns:
      repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    padding: 16px;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: white;
    border-radius: 8px;
    border: 2px solid #5e6ef8;
  }
  .card img {
    width: 64px;
    aspect-ratio: 1;
  }
  
  .card{
    transition: transform .3s ease, rotate .3s ease;
    transition-delay: .15s;
  }
  .card-link:is(:hover, :focus) .card{
    transform: translateY(-20px);
    rotate: 2deg;
    transition-delay: 0s;
  }
  
  