/* styles.css */

body {
    font-family: system-ui;
    margin: 0;
    font-weight: 400;
    padding: 12px 32px;
}

.grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 0;
}

.grid-item-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: calc(35vw - 64px);
}

.grid-item {
    width: 100%;
    background-color: #535353;
    height: 39vh;
    padding-left: 24px;
    padding-right: 24px;
    background-size: cover;
    background-position: center;
    transition-duration: 250ms;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.25);
    text-decoration: none;
    text-shadow: 4px 8px 16px rgba(0,0,0,1);
    color: white;
}

.grid-item:hover {
    transform: scale(1.25);
}

.image-title {
    margin: 0px;
}

.image-coll {
    margin-bottom: 0px;
}
