@charset "utf-8";
/* CSS Document */

.basic-grid {
    
    
    display: grid;
    gap: 1rem;
    
    grid-template-columns: repeat(6, minmax(240px, 1fr));
}



.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: pink;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 500ms;
    overflow: hidden;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


