*{
    margin: 0;
    padding: 0;
}

:root {
    --first: #00ff26;
    --second: #0033ff;
    --third: #ff00b7;
}

body{
    background: rgba(252, 249, 245);
    font-family: sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    grid-template-rows: repeat(3, 200px);
    grid-gap: 20px;
    justify-content: center;
    padding: 50px;
}

.item {
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 0 5px black;
    color: white;
    text-shadow: 0 0 2px black;
    animation: flipinY;
    animation-duration: 2s;
}

.item1 {
    background: var(--first);

}
.item2 {background: var(--second);}
.item3 {background: var(--third);}