@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

iframe, video {
    aspect-ratio: 16 / 9;
    width: 90%;
    border: 8px solid white;
    /* box-sizing: border-box; */
}

h1 {
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: white;
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 35px;
}

.img {
    width: 100%;
    text-align: center;
    margin: 20px 0px;
}

img {
    height: 60px;
}

body {
    background-color: #ff9700;
    font-family: 'Roboto';
    color: white;
}

.clock {
    width: 100%;
    text-align: center;
    font-family: monospace;
    color: white;
    font-weight: 200;
    font-size: 96px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.x {
    font-size: 36px;
    text-align: center;
}

button {
    font-family: 'Roboto';
    border: 2px solid;
    cursor: pointer;
    font-size: 32px;
    padding: 8px;
    background-color: #8C19FF;
    color: #e3e3e3;
}

.views {
    margin-top: 52px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.players {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.player {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    .players.all > .player {
        max-width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .players {
        gap: 0px 32px;
    }
}