*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #F6F7FB;
    color: #111;
}
header{
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #e6e6ef;
}
header h1{
    font-size: 2rem;
}
main{
    max-width: 68.75rem;
    margin: 0 auto;
    padding: 1rem;
}
.grid{
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}
.card{
    background: white;
    border: 1px solid #e6e6ef;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 300ms ease, filter 300ms ease;
}
.card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card .content{
    padding: 0.75rem;
}
.card h3{
    font-size: 1rem;
}
@media (min-width: 768px){
    .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1000px){
    .grid{
        grid-template-columns: repeat(3, 1fr);
    }
}
.grid:hover .card:not(:hover) {
    filter: blur(1.5px);
}
.grid .card:hover{
    transform: scale(1.06);
}