@import url('https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@400;600&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Gemunu Libre';
    background: url(pexels-moose-photos-1037993.jpg);
    background-size: cover;
}

.center{
    border:5px solid black;
    background: rgba(255,255,255,0.8);
    box-shadow: white 0 0 50em, white 0 0 50em;
    width: 40vw;
    text-align: center;
    padding: 1.25em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}
.title{
    font-size: 6em;
    font-weight: 700;
}
#choose{
    display: flex;
    height: 20vh;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 10px 0 10px 0;
}
#choose input{
    font-size: 1.75em;
    background: rgba(0,0,0,0.3);
    border:none;
    border-bottom: 5px solid black;
    outline: none;
    padding: 5px;
    font-family: 'Gemunu Libre';
}
#choose .timecode input{
    height: 1.5em;
    border-radius: 10px;
    margin: 0 10px 0 10px;
}
#choose .timecode input:hover{
    background: #a29bfe;
}
#date, #time{
    width: 8em;
}
#choose .button{
    display: flex;
    justify-content: center;
}
#choose .button input{
    margin: 0 10px 0 10px;
    border-radius: 10px;
    width: 3em;
}
#choose .button #go:hover{
    background: #81ecec;
    cursor: pointer;
}
#choose .button #stop:hover{
    background: #fab1a0;
    cursor: pointer;
}

#information{
    font-size: 2em;
    display: none;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    padding: 0.25em;
}
#information div{
    margin: 0 0 10px 0;
    font-weight: 700;
}
#information span{
    font-size: 1.5rem;
}
.time{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 15vh;
    margin: 2em 0 2em 0;
}
.timebox{
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 6vw;
    height: 12.5vh;
    padding: 0.25em;
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;    
}
.timebox span{
    font-size: 2.5rem;
}