body {
    /* background-color: #212529; */
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-image: radial-gradient(75% 75% at 50% 50%, #212529 50%, #000000FF 100%);

    color: #ebeced;
    font-family: system-ui;
    overflow: hidden;
    display: flex;
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#app {
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#video {
    align-self: center;
    width: 80vw;
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#teeweeplayer {
    width: 96%;
}

#videos {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#videos video {
    border-radius: 7px;
    height: 420px;
}

a {
    color: #ebeced;
}

section {
    padding: 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


kbd {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #aaaaaa; */
    /* color: #212529; */
    /* color: black; */
    font-size: 1.8rem;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 3px;
    min-width: 44px;
    min-height: 44px;
}


button.action {
    border: 0;
    transition: ease-in-out 500ms;
    background-color: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 60px;
}

.action:not(:last-child) {
    margin-right: 12px;
}

.action span {
    display: none;
}

button.action:hover {
    background-color: #30363d;
}

.rounded {
    border-radius: 9px;
}

footer,
footer a {
    /* background-color: yellowgreen; */
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    transition: ease-in-out 500ms;
    filter: opacity(0.4);
}

@media (min-width: 700px) {
    .action {
        background-color: red;
        min-width: 210px;
        padding: 8px 24px;
        border-radius: 9px;
    }

    .action:not(:last-child) {
        margin-right: 42px;
    }

    .action span {
        display: inline-block;
        padding-left: 3px;
    }
}