body {
    margin: 0;
    background-color: #1B244A;
}

@font-face {
  font-family: "scoreboard-font";
  src: url("./cursed-timer-ulil-font/CursedTimerUlil-Aznm.ttf") format("truetype");
}

.container {
    display: flex;
    flex-direction: row;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    justify-content: space-evenly;
    align-items: center;
}

.score-segment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 120px;
}

.score-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #080001;
    width: 100%;
    height: 80px;
    border-radius: 8%;
    color: #F94F6D;
    font-family: scoreboard-font;
    text-align: center;
    font-size: 30px;
}

.team-name {
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: Verdana;
    font-size: xx-large;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.button-score {
    background-color: transparent;
    border: 1px #9AABD8 solid;
    padding: 6%;
    color: #9AABD8;
    font-size: medium;
    font-family: scoreboard-font;
    border-radius: 10%;
}

.button-new-game {
    background-color: #9AABD8;
    padding: 10%;
    color: #1B244A;
    font-size: small;
    font-family: Verdana;
    border-radius: 10%;
}

.debug-border {
    border: 1px dotted transparent;
}