/* #region Main */
main {
    display: flex;
    height: 100vh;
    padding: 0;
    align-items: center;
}
main div {
    margin: 20px;
}
/* #endregion */

/* #region Cards */
.card {
    align-items: center;
    background-color: #222;
    border: 10px solid #222;
    border-radius: 24px;
    box-shadow: 0 0 10px 1px #222;
    display: flex;
    flex-direction: column;
    height: 220px;
    justify-content: center;
    width: 200px;
}
/* Styles for images inside cards */
.card img {
    border-radius: 12px;
    height: 140px;
    object-fit: cover;
    width: 140px;
}
/* Styles for card titles */
.card .card-title {
    align-items: center;
    color: white;
    display: flex;
    justify-content: center;
    margin: 10px;
}
/* Hover effect for cards */
.card:hover {
    background-color: #111;
    border-color: #111;
    box-shadow: 0 0 10px 8px #111;
}
/* #endregion */

/* #region Media Queries */
@media (max-width: 1200px) {
    .card {
        height: 150px;
        width: 150px;
        padding: 10px;
    }
    .card img {
        height: 100px;
        width: 100px;
    }
}
/* #endregion */
