@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', cursive;
}

body {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #3367B1;
}

.block {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(51, 103, 177, 0.8);
    /* background: rgba(0, 0, 0, 0.1); */
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}