*{
    user-select: none;
}
body{
    background-color: var(--bg-color);
}

#main{
    font-family: "Kollektif Regular", sans-serif;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 2fr;
    margin-left: 45px;
}

#workClock, #breakClock{
    align-items: center;
    justify-content: center;
    display: flex;
    grid-column: 1/ span 3;
    height: 100px;
    align-content: center;
}

.timerColon{
    padding-bottom: 10px;
}

#workClock{
    margin-bottom: -15px;
}

#breakClock{
    margin-top: -30px;
}

#buttonContainer{
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    grid-column: 1/ span 3;
}

#timer{
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    margin-top: 10px;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr 1fr;
    height: 250px;
    box-shadow: 2px 2px 2px var(--primary-color);
    color: var(--font-color);
}
#timer h2{
    font-size: 2em;
    grid-column: 1 / span 3;
    margin-bottom: 5px;
    margin-top: -10px;
}
#timer h3{
    font-size: 1em;
    grid-column: 1 / span 3;

}
#upperTimerLabel{
    margin-top: 5px;
    margin-bottom: -40px;
}
#lowerTimerLabel{
    margin-top: -40px;
    margin-bottom: 5px;
}
#timer p{
    font-size: 3em;
}

#timer button{
    color: var(--font-secondary);
    background-color: var(--primary-color);
    font-size: .75em;
    border-radius: 30px;
    box-shadow: 2px 2px 2px var(--primary-color);
    font-family: "Kollektif Regular", sans-serif;
    margin: 0 10px;
}
#timer button:hover{
    background-color: var(--secondary-color);
    border: var(--primary-color) 2px solid;
    cursor: pointer;
}
#todo{
    grid-column: 2 / 3;
    font-size: 2em;
    padding-right: 40px;
}
#todo ul{
    list-style: none;
}
.bigTask{
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    align-items: center;
    width: 600px;
    height: auto;
    display: flex;
    font-size: 0.75em;
    margin-top: 20px;
    box-shadow: 2px 2px 2px var(--primary-color);
    color: var(--font-color)
}

.bigTask .biggBtn{
    margin-left: -20px;
    margin-top: -80px;
    border-radius: 50%;
    font-size: 2em;
    width: 20px;
    position: absolute;
    text-align: center;
}

.bigTask .biggBtn:hover{
    border-radius: 50%;
    background-color: var(--bg-color);
    transition: 0.2s;
    text-shadow: red 2px 2px 2px;
}

li p{
    margin-left: 10px;
}

.bigTask .addBtn{
    width: 20%;
    font-size: 2em;
    background-color: var(--bg-color);
    border: none;
    color: var(--font-color);
    text-align: center;
    margin-left: 50px;
    border-radius: 20px;
}
.bigTask .addBtn:hover{
    background-color: var(--primary-color);
    cursor: pointer;
    color: var(--font-secondary);
    transition: 0.2s;
}
.lilTask{
    margin-left: 50px;
    display: flex;
    align-items: center;
    grid-row-gap: 0;
    justify-content: start;
    height: 100px;
    max-width: 1130px;
    color: var(--font-color);
}
.lilTask.checkclose{
    grid-column: 1;

}
.lilTask p{
    grid-column: 2 / span 4;
}

p.checked{
    text-decoration-line: line-through;
    color: var(--primary-color);
    opacity: 0.5;
}

.exed{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 30%;
    height: auto;
    border-radius: 30px;
}

.exed:hover{
    color: red;
    text-shadow: 2px 2px 4px black;
}

.checkclose {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 10%;
    height: auto;
    border-radius: 30px;
}

.checkclose:hover {
   color: greenyellow;
    text-shadow: 2px 2px 4px black;
}
ul li.checked {
    background: #888;
    color: #fff;
    text-decoration: line-through;
}

.estimatedtime{
    display: flex;
}
#eta{
    border: 2px solid var(--primary-color);
    align-content: center;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 2px 2px 2px var(--primary-color);
    color: var(--font-color);

}