* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: Digital-Mono;
    src: url('/fonts/Digital-7Mono.woff2'), url('/fonts/Digital-7Mono.woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
    --smallCircleSize:5rem;
    --bigCircleSize:20rem;
}
h1,h2{
    text-shadow: 1px -1px 1px white;
}
.timer{
z-index: 3;
}
.counter{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap:2rem;
}
.stopButton{
    width: 3rem;
    height: 3rem;
    background-color: rgb(255, 1, 1);
    color: aliceblue;
    border-radius: 50%;
    transition: 1s;

}
.hidden{
    display:none;
    width: 0.1rem;
    height: 0.1rem;
     transition: 1s;
}

body {
    font-family: Digital-Mono;
    color: rgb(26, 2, 133);
    background-color: black;
    height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap:3rem;
    transition: 1s;
}
.timer input {
    width: 7rem;
    height: 3rem;
    border-radius: 20px;
    background-color: rgb(87, 87, 99);
    color: aliceblue;
    padding-left: 0.5rem;


}

form button{
    width: 7rem;
    height: 3rem;
    background-color: rgb(26, 2, 133);
    color: aliceblue;
    border-radius: 20px;
    
}
.timer h1{
margin-top: 2rem;
font-size: 3rem;
}

.circle{
    width: 0rem;
height: 0rem;
border-radius: 50%;
background-color: rgba(244, 244, 253, 0.070);
transition: 1s;
position: absolute;
margin: auto;
bottom: 0;
left: 0;
right: 0;
top: 0;
}
.clock{
    width:100%; 
    height:90%;
    position: relative;
}
.outer{
border: blue 6px solid;
display: grid;
place-items: center;
}
.inner{
border: whitesmoke solid;
}
.alarm{

background-color: rgba(102, 51, 153, 0.404);
}

.text{
text-align: center;
display: flex;
flex-direction: column;
gap:1rem;
font-size: 2rem;
z-index: 2;
}

