@import url(./var.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#layout {
    gap: 80px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}
  
.card {
    flex: 1 1 200px;
    width: auto;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 500ms ease-in-out;
}

.card img:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
