body{
    font-family: "Raleway", sans-serif;
    text-align: center;
}
.container{
    width: 100%;
}
p{
    color: white;
    font-size: 6vw;
    margin-top: -40px;
}
#clock{
    width: 100%;
    text-align: center;
}
#progressBarContainer {
    transform: rotate(-90deg);
    position: relative;
    left: -3%;
    top: -30%;
}
.buttonSection{
    width: 100%;
    padding-top: 3rem;
}
.roundButton{
    border-radius: 50%;
    background-color: white;
    border: 0;
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
}
#button1{
    float: left;
    width: 49%;
}
#button2{
    float: right;
    width: 49%;
}
.selector{
    background-color: white;
    padding: .8rem 1.4rem .9rem .8rem;
    width: 30%;
    border-radius: .5rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 1rem;
    text-align: center;
}
html {
  --s: 29px; /* control the size*/
  --c1: #5e8c6a;
  --c2: #bfb35a;
  
  --_s: calc(2*var(--s)) calc(2*var(--s));
  --_g: 35.36% 35.36% at;
  --_c: #0000 66%,var(--c2) 68% 70%,#0000 72%;
  background:
    radial-gradient(var(--_g) 100% 25%,var(--_c)) var(--s) var(--s)/var(--_s),
    radial-gradient(var(--_g) 0    75%,var(--_c)) var(--s) var(--s)/var(--_s),
    radial-gradient(var(--_g) 100% 25%,var(--_c)) 0 0/var(--_s),
    radial-gradient(var(--_g) 0    75%,var(--_c)) 0 0/var(--_s),
    repeating-conic-gradient(var(--c1) 0 25%,#0000 0 50%) 0 0/var(--_s),
    radial-gradient(var(--_c)) 0 calc(var(--s)/2)/var(--s) var(--s),
    var(--c1);
}

#countdown-timer {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#countdown-timer > div {
    position: relative;
    background: #fff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    letter-spacing: 2px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #000;
    color: #000;    
}
#countdown-timer .colon {
    background: transparent;
    box-shadow: none;
    font-size: 50px;
    width: 25px;
    border: none;
}
#countdown-timer > div::before{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 20px;
    font-size: 14px;
    color: #111;
    line-height: 20px;
    letter-spacing: 1px;
    
}
#countdown-timer > div.hours::before{
    content: "HOURS";
}
#countdown-timer > div.minutes::before{
    content: "MINUTES";
} 
#countdown-timer > div.seconds::before{
    content: "SECONDS";
}
@media screen and (max-width: 786px) {
    #progressBarContainer {
        transform:rotate(180deg) scale(0.8);
        position: relative;
        left: -25%;
        top: -20%;
    }
    .selector{
        width: 50%;
    }
    #countdown-timer {
        position: relative;
        top: 0;
        left: 0;
        transform: scale(0.5);
    }    
}
