@import url('https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@100;200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arima Madurai', cursive;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #202020;
    overflow: hidden;
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    position: relative;
    z-index: 1;
    margin: 10px;
    border: none;
    outline: none;
    background-color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
    /* display: none; */
}

/* button:hover,
button:focus,
button:active {
    transform: scale(1.1);
} */

.block {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
}

.block:nth-child(3n + 2) {
    background-color: #444;
}

.block:nth-child(3n + 3) {
    background-color: #ff9213;
}