
.container{
    font-family: Arial, Helvetica, sans-serif;
    margin: 25px auto;
    max-width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-div{
    border: 2px solid honeydew;
    background-color: #eedff357;
    border-radius: 6%;
    padding: 10px;
    width: 50%;
    max-width: 100%;
}

img{
    display: block;
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
}

h2{
    font-size: 24px;
    text-align: center;
}

p{
    font-size: 18px;
    text-align: center;
}

a{
    color: rgb(217, 12, 12);
    text-decoration: none;
}

.center-div{
    padding-top: 10px;
    font-size: 18px;
    text-align: center;

}
a:hover{
    text-decoration: underline;
    color: purple; 
}

#app{
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-timer {
    position: relative;
    width: 150px;
    height: 150px;
}
  
.base-timer__svg {
    transform: scaleX(-1);
}
  
.base-timer__circle {
    fill: none;
    stroke: none;
}
  
.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}
  
.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}
  
.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}
  
.base-timer__path-remaining.orange {
    color: orange;
}
  
.base-timer__path-remaining.red {
    color: red;
}
  
.base-timer__label {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}