Scoreboard, .scoreboard {
    position: absolute;
    top: 50px;
    left: 400px;
    right: 400px;
    bottom: 50px;

    padding: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    // border-radius: 30px;

    // backdrop-filter: blur(2px);

    flex-wrap: wrap;

    font-family: Roboto;
    font-size: 25px;

    z-index: 100;

    h1 {
        font-family: Poppins;
        font-size: 60px;
        font-weight: 800;
        // margin-bottom: 20px;
        width: 100%;
    }

    .table {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        width: 100%;

        color: #fff;
        // border: 1px solid red;

        thead {
            display: flex;
            flex-direction: row;
            width: 100%;

            tr {
                display: flex;
                flex-direction: row;
                width: 100%;

                th {
                    display: flex;
                    flex-direction: row;
                    flex-grow: 1;
                    flex-shrink: 1;
                    flex-basis: 0;

                    font-weight: 800;
                    text-align: left;
                    padding: 10px;

                    background-color: rgba(255, 224, 0, 0.1);
                    // border: 1px solid red;
                }
            }
        }

        tbody {
            display: flex;
            flex-direction: column;
            width: 100%;

            tr {
                display: flex;
                flex-direction: row;
                width: 100%;

                &:nth-child(even) {
                    background-color: rgba(255, 224, 0, 0.03);
                }

                td {
                    display: flex;
                    flex-direction: row;
                    flex-grow: 1;
                    flex-shrink: 1;
                    flex-basis: 0;

                    padding: 10px;
                    // border: 1px solid red;
                }
            }
        }
    }

}

