@font-face {
    font-family: 'Digital7';
    src: url("../font/Digital7-1e1Z.ttf");
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Digital7', sans-serif;
    color: #e9e9e7;
    user-select: none;
    text-align: center;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: #123726;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title{
    font-size: 104px;
    border-bottom: 2px solid #cdcabe;
    padding: 10px;
    width: 100%;
}
.clock{
    font-size: 50px;
    padding: 17px 10px 10px;
    border-bottom: 2px solid #cdcabe;
    width: 100%;
}
.number{
    display: inline-block;
    width: 115px;
    font-size: 130px;
    text-align: center;
    border: none;
    background-color: transparent;
}
.buttons{
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}
.buttons button {
    font-size: 140px;
    padding: 22px 10px 10px;
    border: none;
    background-color: #123726;
    border-bottom: 2px solid #cdcabe;
}
#stop, #play{
    width: 100%;
}
#play:active, #stop:active {
    color: #cdcabe;
}
.made{
    padding: 25px;
    font-size: 20px;
    color: #e9e9e7;
    text-decoration: none;
}
@media screen and (max-width: 800px) {
    .clock{
        font-size: 42px;
    }
    .number{
        width: 50px;
        font-size: 40px;
    }
    .title{
        font-size: 60px;
    }
    .buttons button {
        font-size: 50px;
    }
}