body {
    margin: 0;
    text-align: flex-start;
    padding-bottom: 50px;
}

@font-face {
    src: url("scoreboard.ttf");
    font-family: scoreboard;
}

.score-value {
    font-family: scoreboard;
}

#timer {
    font-family: scoreboard;
    font-size: 80px;
    margin: 0;
    color: rgb(255, 0, 0);
    text-shadow: none;
}

.container {
    display: flex;
    justify-content: space-between;
    background-color: rgba(65, 62, 158, 0.945);
    padding-top: 30px;
    border: 7px solid rgb(126, 28, 28);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 620px;
    margin: auto;   
    margin-top: 50px;
    padding-bottom: 50px;
}

.score-display {
    border-radius: 14px;
    text-align: center;
    width: 100px;
    margin-left: 50px;
    margin-right: 50px;
    align-items: end;
    color: white;
    font-family: scoreboard;
    font-size: 15px;
}

#home-score {
    background-color: rgb(8, 8, 8);
    padding: 10px;
    border: 4px solid rgb(139, 136, 136);
    border-radius: 10px;
    font-size: 50px;
    margin: 0;
    color: rgb(255, 0, 0);
    text-shadow: none;
    display: flex;
    justify-content: center;

}

#guest-score {
    background-color: rgb(8, 8, 8);
    padding: 10px;
    border: 4px solid rgb(139, 136, 136);
    border-radius: 10px;
    font-size: 50px;
    margin: 0;
    color: rgb(255, 0, 0);
    text-shadow: none;
    display: flex;
    justify-content: center;

}


#buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 100px;
    gap: 10px;
    
}
button {
    background-color: rgb(3, 3, 3);
    color: rgb(255, 0, 0);
    border: 4px solid rgb(139, 15, 15);
    border-radius: 14px;
    padding: 10px;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    width: 100px;
}
#middle-display {
    text-align: center;
    color: rgb(248, 0, 0);
    text-shadow: 1px 1px 4px rgb(172, 175, 177);
    margin-top: 30px;
    margin-bottom: auto;
    background-color: rgb(3, 3, 3);
    display: flex;
    justify-content: center;
    border-radius: 14px;
    width: 200px;
    height: 110px;
    border : 4px solid rgb(139, 136, 136);
    font-size: 30px;
    align-items: center;

}
#reset-div {
    display: flex;
    align-items: center;    
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

