@font-face{
    font-family:'digital-clock-font';
    src: url("../fonts/clock.ttf") format("truetype");
}

body {
    margin: 0;
    background-color: #19244d;
}

.container {
    display: flex;
    justify-content: space-around;
    background-color: #19244d;
    min-height: auto;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.score h3 {
    font-size: 3rem;
    color: white;
    font-family: sans-serif;
}

.score h2 {
    background-color: black;
    min-height: 15rem;
    min-width: 200px;
    color: red;
    font-size: 15rem;
    margin: 0;
    text-align: center;
    font-family: digital-clock-font, serif ;
    padding: 20px;
}

.score-button button {
    background-color: #19244d;
    border: white solid 2px;
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
}