
        .rectangle{
            background-color: rgb(65, 65, 65);
            height: fit-content;
            width: fit-content;

        }
        .circle{
            border-radius: 50%;
            height: fit-content;
            width: fit-content;
            margin: 0rem;
            width: 2rem;
            height: 2rem;
        }
        .bg-red{
            background-color: red;
        }
         .bg-yellow{
            background-color: yellow;
        }
        .bg-green{
            background-color: green;
        }
        .bg-black{
            background-color: black;
        }
        .row{
            display:flex;
            flex-direction:row;
            /*gap :8px;*/
        }
        .column{
            display: flex;
            flex-direction: column;
        }