body{
    font-family: monospace;
    background-color:#f3ece2;
    color: #662d19;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

button{
    font-family: monospace;
    background-color:#f3ece2;
    color: #662d19;
}

div{
    box-shadow: 2px 2px;
}

#date{
    position: fixed;
    top: 0px;
    left: 5px;
}
.main{
    background-color: #c5d2db;
    text-align: center;
    position: relative;
    width: 900px;
    height: 900px;
}

.checklist{
    position: absolute;
    top: 100px;
    left: -50px;
    width: 250px;
    height: 250px;
    overflow-y: auto;
    background-color: #eacfc8;
    border: double;
}

.habits{
    position: absolute;
    bottom: 80px;
    right: -30px;
    width: 250px;
    height: 200px;
    overflow-y: auto;
    background-color: #9fa694;
    border: dotted;
}

.log{
    position: absolute;
    top: 150px;
    right: 80px;
    width: 300px;
    height: 400px;
    overflow-y: auto;
    background-color: #f4eee2;
    border: solid;
}

.progress{
    position: absolute;
    bottom: 30px;
    left: 80px;
    width: 300px;
    height: 200px;
    overflow-y: auto;
    background-color: #f4eee2;
    border: solid;
}

.notes{
    position: absolute;
    bottom: 300px;
    left: -30px;
    width: 500px;
    height: 200px;
    overflow-y: auto;
    background-color: #9eacb7;
    border: dashed;
}

.circle{
    position: absolute;
    top: 160px;
    left: 280px;
    border-radius: 150px;
    text-align: center;
    width: 150px;
    height: 150px;
    border: dotted;
    background-color: #ae857f;
    animation: rotate 30s infinite;
}

.circle1{
    position: absolute;
    bottom: 60px;
    right: 280px;
    border-radius: 150px;
    text-align: center;
    width: 150px;
    height: 150px;
    border: dotted;
    background-color: #ede0dd;
    animation: rotate 30s infinite;
}

@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.pomodoro{
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 450px;
}

.blink{
    animation: blink 1s infinite;
}
@keyframes blink{
    0% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}