@import "./themes.css";

.listings {
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px auto;
    gap: 40px;
}

.listing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 200px;
    background-color: var(--box-color);
    padding: 20px;
    gap: 20px;
}

.listing:hover {
    transform: scale(1.05);
    transform-origin: center;
}

h2 {
    width: 100%;
    text-align: center;
}

i {
    font-size: 51pt;
    fill: var(--primary-color);
    color: white;
}

a {
    text-decoration: none;
}

p {
    text-align: center;
    font-size: 13pt;
}

