html {
    padding: 0;
}

body {
    background: #EEE;
    font-family: sans-serif;
    padding: 24px;
}

#court {
    background-color: green;
    background-image:
        linear-gradient(transparent 49.75%, white 49.75% 50.25%, transparent 50.25%),
        linear-gradient(to right, transparent 15%, white 15% 15.5%, transparent 15.5% 84.5%, white 84.5% 85%, transparent 85%),
        linear-gradient(to right, transparent 49.75%, white 49.75% 50.25%, transparent 50.25%),
        linear-gradient(white 0.5%, transparent 0.5% 99.5%, white 99.5%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, 100% 50%, 70% 50%;
    aspect-ratio: 1 / 2;
    width: 25vw;
    ul {
        box-sizing: border-box;
        font-weight: 500;
        letter-spacing: 0.1rem;
        list-style-type: none;
        margin: 0;
        padding: 0;
        text-transform: uppercase;
    }
    > ul {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding: 5% 20%;
        > li {
            color: orange;
            &:first-child {
                color: yellow;
            }
            &:last-child {
                li {
                    &:last-child {
                        &:before {
                            background: linear-gradient(to bottom right, yellow, green 80%);
                            border: 1px solid white;
                            border-radius: 100%;
                            content: '';
                            display: block;
                            height: 10px;
                            position: absolute;
                            right: 0;
                            top: -15px;
                            width: 10px;
                        }
                    }
                }
            }
        }
        ul {
            li {
                position: relative;
                &:last-child {
                    text-align: right;
                    &:after {
                        right: 0;
                    }
                }
                &:after {
                    background: blue;
                    border: 1px solid white;
                    border-radius: 100%;
                    bottom: -15px;
                    content: '';
                    display: block;
                    height: 10px;
                    position: absolute;
                    width: 10px;
                }
            }
        }
    }
}

button {
    font-size: 2rem;
}