.container {
    background-color: green;
    width: 1920px;
    height: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 50px;
}

#scoreboard {
    background-color: rgba(67, 0, 131, 255);
    color: #fff;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px;
}

.logo {
    padding: 0px 10px 0px 0px;
    width: 40px;
}

.equipo, .goles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: Sriracha;
    font-size: 2em;
    padding: 5px 0px;
}
#equipo1, #equipo2 {
    padding: 5px 10px;
}

.equipo {
    background-color: #616161;
    width: 65px;
}

.goles {
    text-align: center;
}

#goles-equipo1, #goles-equipo2 {
    width: 60px;
}
#goles-division {
    width: 15px;
}

/* Tiempo de Juego */
.timer-section {
    width: 60px;
    text-align: center;
    padding: 5px 10px;
}
.tiempo {
    display: block;
}
#tiempoDeJuego {
    font-size: larger;
    color: aqua;
}

/* FALTAS */
.faltas {
    text-align: center;
    width: 325px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 80px 0px 60px;

}
.dots {
    display: flex;
}
#faltas1, #faltas2 {
    width: 130px;
    display:flex;
}

.faltas .dot-group {
    display: flex;
}

.dot {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 15px #000;
    padding: 6px;
    margin-right: 5px;
}

.dot.active {
    background-color: red;
}
