.square, .circle {
    width: 100px;
    height: 100px;
    margin: 15px; 
}

.circle {
    border-radius: 50%;
}

#blockPink {
    background-color: deeppink;
}
#blockWhite {
    background-color: hotpink;
}

#container {
    background-color: rgb(255, 184, 221);
    margin: 50px auto;
    width: 600px; 
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    border-radius: 10px; 
}

.square:hover, .circle:hover {
    transform: scale(1.08);
    transition: 0.2s;
}