body{
    background-color: #1B1B1B;
    margin, padding: 0px;
    color: #F0EAD6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    cursor:default;
    font-family: serif;
    box-sizing: border-box;
    user-select: none;
}
#content{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    text-align: center;

}
@media (max-width: 1250px){
    #content{
        flex-direction: column;
    }
    #timer{
        order: -2;
    }
    #mainTimer{
        order: -1;
    }
    .adjuster{
        margin-top: 100px;
    }
}
.adjuster{
    position: relative;
    display: flex;
    margin-bottom: 64px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 400px;
}
.adjuster h1{
    margin: 0px 50px;
}
.adjuster h2{
    width: 100%;
}
.button{
    position: absolute;
    top: 60px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(55, 64, 73);
    color: #F0EAD6;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    border-width: 1px;
    border-color: slategray;
    border-style: solid;
}
.button:active {
    top: 64px;
    border-style: none;
}
#decMain:active, #decBreak:active {
    left: 21px;
}
#incMain:active, #incBreak:active {
    right: 21px;
}

#timer{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;

    font-size: 70px;

    margin: 0px 8%;
    width: 200px;
    height: 200px;
    /*border: 10px solid forestgreen;*/
    color: #1B1B1B;
    border-radius: 50%;
    background-color: #F0EAD6;
}
#timerVal span{
    position: relative;
    bottom: 6px;
}
@keyframes start {
    0%{
        stroke-dashoffset: 0;
    }
}

#timer svg{
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: 110px 110px;
    top: -10px;
    left: -10px;
    height: 110%;
    stroke: forestgreen;
    stroke-width: 10px;
    stroke-dasharray: 659;
    stroke-dashoffset: 659;
}
.startTimer{
    animation: start 1s ease-in forwards;
}
#decBreak, #decMain{
    left: 20px;
    height: 40px;
    padding-bottom: 10px;
    width: 49px;
    padding-left: 1px;
}
#incBreak, #incMain{
    right: 20px;
    height: 48px;
    padding-bottom: 2px;
    width: 49px;
    padding-left: 1px;
}
