.container{
    background-color: #755E8C;
    height: 90vh;
    width: 100vw;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
}

.item{
    width: 300px;
    height: 300px;
    background: #3A1CA6;
    margin: 10px;
    border-radius: 5px;
    transition: 0.2s;
}

.item:hover{
    scale: 1.05;
}