@import url('https://fonts.googleapis.com/css2?family=Arima:wght@700&family=Fascinate&family=Lobster&family=Manrope&family=Roboto:ital,wght@0,300;0,500;1,100&family=Rubik+Moonrocks&family=Tapestry&display=swap');

*, *::before, *::after{
    padding : 0;
    margin : 0;
    box-sizing: border-box;
}

body { 
    height: 100vh;
    padding: 30px;
    font-family: 'Arima', cursive;
    background-image: linear-gradient(to left, rgba(251, 108, 46, 0.89), rgba(65, 5, 5, 0.9)), url(b.png);

}

h1{
    font-size: 35px;
    font-weight: bolder;
    color: #F4E06D;
    text-align: center;
}

input{
    transition: 0.5s erase-in-out;
    margin : 15px 0;
    font-size: 23px;
    padding: 5px;
    background: transparent;
    border-width: 2px;
    border-color: #FFEF82;
    border-radius: 10px;
    color: #FFEF82;
    font-weight: bolder;
    font-family: 'Arima', cursive;
    text-align: center;

}

.btn-group{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 10%;    
}
.aa{
    height: 45px;
    width: 200px;
    background: transparent;
    border-width: 2px;
    border-color: #FFEF82;
    border-radius: 10px;
    font-size: 23px;
    color: #FFEF82;
    font-family: 'Arima', cursive;
    font-weight: bolder;
    padding-bottom : 4px;
    transition: 0.5s erase-in-out;

    
}

.btn-group :hover {
    height: 40px;

}

form{
    height: 20%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 370px;
    margin: 5px auto;
}

#bb{
    margin-left: 100px;
    text-align: center;
}


#bb:hover{
    height: 40px;
}
.cc{
    font-size: 25px;
    text-align: center;
    color: #FBCB0A;
}

.break{
    height: 45px;
    width: 200px;
    background: transparent;
    border-width: 2px;
    border-color: #FFEF82;
    border-radius: 10px;
    font-size: 23px;
    color: #FFEF82;
    font-family: 'Arima', cursive;
    font-weight: bolder;
    padding-bottom : 4px;
    transition: 0.5s erase-in-out;
}

.resume{
    height: 45px;
    width: 200px;
    background: transparent;
    border-width: 2px;
    border-color: #FFEF82;
    border-radius: 10px;
    font-size: 23px;
    color: #FFEF82;
    font-family: 'Arima', cursive;
    font-weight: bolder;
    padding-bottom : 4px;
    transition: 0.5s erase-in-out;
}

.clock{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    height: 30%;
    font-size: 26px;
    color :#FFEF82;
}

.progress-ring{
    position: absolute;
    top : 50%;
    left : 50%;
    transform: translate(-50%, -50%);
}

.progress-ring__circle{
    transition: 0.5s;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    text-shadow: #FFEF82;
    stroke :rgba(245, 227, 138, 0.9);
    stroke-width: 9px;   
}

.danger{
    stroke : rgb(29, 5, 5);
    animation : pulse 0.9s erase-in-out infinite;
}

@keyframes pulse{
    0%,
    100%{
        transform : rotate(-90deg) scale(1);
    }
    50%{
        transform : rotate(-90deg) scale(1.05);
    }

    75%{
        transform : rotate(-90deg) scale(0.8);
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}