body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fff;
}

#text {
    text-align: center;
    margin-bottom: 15px;
}

#container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 700px;
}

.card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.15s ease-in-out;
}

.card.active {
    margin-top: -5px;
    margin-bottom: 5px;
    box-shadow: none;
}

.card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}