@font-face {
    font-family: 'Baznat';
    src: url('Baznat.ttf');
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family:'Franklin Gothic';
}

.group {
    padding: 20px;
    margin: 20px;
    border: 1px solid grey;
    display: inline-block;
    background-color: #00000010;
}

.inputRow {
    display: flex;
    align-items: center;
}

.rowLabel {
    margin: 0;
    margin-right: 10px;
}

#setNamesBtn {
    margin: 20px;
}

#teamsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 82px;
    transform: translate(0, 120px);
}

.buttons {
    margin-left: 20px;
}


.teamName {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translate(-50%,0);
    color: #410E3D;
    font-size: 50px;
    width: 220px;
    font-weight: 400;
    font-family: Arial;
}

.teamContainer {
    width: 161px;
    height: 427px;
    text-align: center;
    position: relative;
    background-color: white;
    border-radius: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
}

.scoreBarContainer {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 90px;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.scoreBar {
    background-color: chocolate;
    width: 100%;
    height: 0%;
    border-radius: 90px;
    transition: height ease-in-out 1s;
}

.scoreText {
    position: absolute;
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: #410E3D;
    transition: color linear 1s;
}

#timerContainer{
    width: 100%;
    height: 100%;
    position: relative;
}

#timerMinutes {
    position: absolute;
    left: 21%;
    top: 50%;
    font-weight: bold;
    font-size: 200px;
    transform: translate(-50%, -50%);
    color: #FFE500;
}

#timerSeconds {
    position: absolute;
    left: 48%;
    top: 50%;
    font-weight: bold;
    font-size: 200px;
    transform: translate(-50%, -50%);
    color: #FFE500;
}

body {
    height: 100%;
}

html {
    height: 100%;
}

#main-wrapper {
    width: 1920px;
    position: fixed;
}

#content-clock {
    background-image: url('/clock_bg.png');
    height: 1080px;
}

#content-main {
    background-image: url('/bg.png');
    height: 1080px;
}

#taskNumTitle {
    position: absolute;
    left: 50%;
    top: 240px;
    font-size: 125px;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    color: #FFE500;
    background-color: #410E3D;
    padding: 0px 40px;
    font-family: Arial;
    direction:rtl;
}

#team0ScoreBar {
    background-color: #5F046D;
}

#team1ScoreBar {
    background-color: #DE06FF;
}

#team2ScoreBar {
    background-color: #E678F6;
}

#team3ScoreBar {
    background-color: #DE06FF;
}

#team4ScoreBar {
    background-color: #6D2460;
}

#team5ScoreBar {
    background-color: #9235A1;
}