main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;

    >section {
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        width: 230px;



        >div {
            display: flex;
            width: 100%;

            &:nth-of-type(1) {
                display: flex;
                justify-content: space-between;
                align-items: center;
                box-shadow: inset 5px 5px 4px #b1b1b1, inset -5px -5px 4px #ffffff;
                border-radius: 8px;
                padding: 10px;

                >h2 {
                    font-size: 30px;
                    font-weight: lighter;
                    width: 50px;
                    display: flex;
                    justify-content: center;
                }

                >span {
                    font-weight: bolder;
                    font-size: 25px;
                }
            }

            &:nth-of-type(2) {
                display: flex;
                justify-content: space-evenly;

                >button {
                    background-color: transparent;
                    border: none;
                    box-shadow: 8px 8px 15px #b1b1b1, -8px -8px 15px #ffffff;
                    border-radius: 10px;
                    padding: 5px 10px;
                    font-weight: bolder;
                    cursor: pointer;

                    &:nth-of-type(1) {
                        &:hover {
                            background-color: #00ffb3;
                        }

                    }

                    &:nth-of-type(2) {
                        &:hover {
                            background-color: #00c3ff;
                        }
                    }

                    &:nth-of-type(3) {
                        &:hover {
                            background-color: #ffae00;
                        }
                    }
                }
            }
        }
    }
}