@font-face {
    font-family: primary-font;
    src: url(./timerFont.ttf);
}
:root{
    --primary-color:red;
    --border-radius:8px;
}
body{
   
    margin: 10% 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    color: var(--primary-color);
    font-family: primary-font;
}

.main-container{
     display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:0 auto;
    padding: 20px;
    width:50vw;
    height: 50vh;
    background: #1B244A;
}
.top-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width:30vw;
    height: 16vh;
    background-color: black;
    margin: 0 auto;
    border: 6px double white;
    font-size:12vh;
}
.center-container{
    display: flex;
    justify-content: space-around;
}

.center-left-center,.center-right-center{
    display: flex;
    width:10vw;
    height: 15vh;
    background-color: black;
    font-size: 10vh;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-bottom: 10%;
}
.center-container{
    width:50vw;
    display: flex;
    justify-content: space-around;
}

button{
    background: none;
    border:1px solid white;
    border-radius:4px;
    width:20%;
    height: 25%;
    color:white;
    padding:1vh;
    font-family: primary-font;
}

button:hover{
    color:black;
    background-color: white;
}