*{
    margin: 0;
    padding: 0;
}
html,body{
    height: 100%;
    width: 100%;
    /* background-color: #cb4042; */
    background-color: #006000; 
    overflow: hidden;
}
h1{
    text-align: center;
    margin-top: 5%;
    color: #fff;
    font-family: 'Sedgwick Ave Display', cursive;
}

.main{
    margin-top: 5%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    text-align: center;
}

.control{
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
}

.break{
    display: inline;
    padding: 0 30px; 
}
.length{
    display: inline;
    padding: 0 30px;
}
span{
    font-size: 2em;
    color: #fff;
    font-family: 'Bitter', serif;
}
.fa{
    font-size: 1.4em;
    color: #fff;
    cursor: pointer;
    margin: 0 10px;
}

.control p{
    color: #b5caa0;
}

/* outer ring of the clock */
.clock{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* border:4px solid #a8d8b9;*/
    border:2px solid #820041;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
    cursor: pointer;
    z-index: 20;
    overflow: hidden;
}

/* inner ring of the clock */
.clock:before{
    content: '';
    position: absolute;
    border:8px solid #cb4042;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.clock h2{
    font-family: 'Bitter', serif;
    font-size: 2.5em;
    margin-top: 80px;
    color: #fff;
}

#per{
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: #b5caa0;
    /* background-color: #3f2b36; */
    z-index: -1;
}
