@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;

    font-family: "Mitr", sans-serif;
    font-weight: 500;
    font-style: normal;
}

body {
    background-color: lightgray;
}

.mainContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;

    .Container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border-radius: 15px;
        padding: 50px 100px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

        .content {
            display: flex;
            justify-content: space-between;

            font-size: 24px;

            .buy {
                color: green;

            }

            .sell {
                color: red;

            }

            .date {
                display: i
            }

            .buy,
            .sell {
                margin: 30px;
            }
        }
    }
}