* {
    margin: 0;
    padding: 0;
    /* background-color:  rgb(103, 70, 29) ; */
    align-items: center;
    opacity: 1;
    font-family: 'Anton', 'sans-serif';
    box-sizing: border-box;

}

body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    column-gap: 20px;
    background-color: white;
/* coquette background  */
    background-image: linear-gradient(90deg, rgba(62, 81, 117, 0.505) 50%, transparent 50%),
        linear-gradient(rgba(62, 81, 117, 0.505)50%, transparent 50%);
    background-size: 50px 50px;
}

.mainbox {
    height: 80%;
    width: 95%;
    border-radius: 15px;
    border-color: rgb(255, 235, 208);
    display: flex;
    justify-content: space-evenly;
    fill-opacity: 1;
}


.motivationpanel {
    height: 100px;
    width: 91%;
    background-color: rgba(255, 252, 237, 0.884);
    border-radius: 15px;
    color: #191f2d;
    text-align: center;
    font-size: 2rem;
    align-content: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-kerning: 10px;
    border: none;
    outline: 2px dashed #333;
    outline-offset: -7px;
    letter-spacing: 1px;
}

.timerbox {
    height: 800px;
    width: 900px;
    border-radius: 15px;
    background-color: rgba(30, 42, 65, 0.9);
    display: grid;
    place-items: center;
    align-items: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.timerbox.show-stop{
    min-height: 900px;
    transition: all 0.3s ease;
}

.timer {
    height: 90%;
    width: 100%;
    display: grid;
    place-items: center;
}

.timerhead {
    height: 60px;
    width: 92%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    padding: 10px;
}

button {
    height: 40px;
    width: 200px;
    border-radius: 20px;
    background: rgba(255, 252, 237, 0.884);
    padding: 1.7rem 1.4rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    outline: 2px dashed #151412;
    outline-offset: -7px;
    /* moves it inside */
    align-content: center;
    justify-content: center;
    text-align: center;
    display: flex;
    justify-content: center;
    color: rgba(23, 31, 40, 0.884);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    font-weight: 300;
}

button:hover {
    background: #495a74;
    color: rgba(255, 252, 237, 0.884);
    outline: dashed rgba(255, 252, 237, 0.884);
    outline-offset: -7px;
}

.timerpanel {
    height: 400px;
    width: 91%;
    background-color: rgba(255, 252, 237, 0.884);
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12rem;
    padding: 10px;
}

.timerpanel p {
    text-shadow: 2px whitesmoke;
    color: oklch(23.763% 0.03015 259.065);
    opacity: 1;
    font-size: larger;
}

@media(max-width : 1436px){
    .timerpanel p {
        font-size: 13rem;
    }
}

.timerfoot {
    height: 60px;
    width: 92%;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    padding: 10px;
}

#Stop-btn{
    width: 95%;
    height: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center; 
    align-content: center;
    justify-items: center;
    text-align: center;
}
.streakpanel {
    height: 50px;
    width: 91%;
    background-color: rgba(255, 252, 237, 0.884);
    display: flex;
    justify-content: space-evenly;
    border-radius: 25px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
}

.blink {
    animation: blink-animation 0.5s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}



.sidepanel {
    height: 900px;
    width: 900px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    align-items: center;
    margin-top: 25px;
}

.taskpanel,
.notespanel {
    height: 95%;
    width: 95%;
    border-radius: 15px;
    border: none;
    outline: dashed 2px rgb(25, 34, 46);
    outline-offset: -10px;
    text-align: center;
    background: #ac9e81;
    opacity: 0.9;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-decoration: dotted;
    background-color: rgba(255, 252, 237);
    background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
}

.taskpanel p,
.notespanel p {
    margin-top: 12px;
    color: rgb(15, 26, 45);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;

}

@media (max-width:1000px) {
    .mainbox {
        flex-wrap: wrap;
        width: 1010px;
    }
     .timerbox{
        width: 950px;
    }
    .sidepanel {
        display: flex;
        height: 700px;
        width: 100%;
        margin-top: 10px;

    }

    .taskpanel,
    .notespanel {
        width: 90%;
        margin: 15px;
    }
}

.addtaskContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 10px;
    margin-right: 7px;
    color: rgba(255, 252, 237, 0.884);

}

input {
    flex: 1;
    border: none;
    border-radius: 10px;
    padding: 17px;
    background-color: rgb(27, 38, 64);
    margin: 10px;
    color: rgba(255, 252, 237, 0.884);
    outline: dashed 2px rgba(255, 252, 237, 0.884);
    outline-offset: -7px;
}

.taskpanel button {
    width: 100px;
    height: 50px;
    border-radius: 10px;
    padding: 23px;
    margin: 10px;
    text-align: center;
    align-content: center;
    background-color: rgb(27, 38, 64);
    outline: dashed 2px rgba(255, 252, 237, 0.884);
    outline-offset: -7px;
    display: flex;
    justify-content: center;
    align-content: center;
    color: rgba(255, 252, 237, 0.884);
    
}

.notespanel button {
    width: 100px;
    height: 50px;
    border-radius: 10px;
    padding: 23px;
    margin: 10px;
    text-align: center;
    background-color: rgb(27, 38, 64);
    outline: dashed 2px rgba(255, 252, 237, 0.884);
    outline-offset: -7px;
    display: flex;
    justify-content: center;
    align-content: center;
    color: rgba(255, 252, 237, 0.884);
}

.taskpanel button:hover,
.notespanel button:hover {
    background: #495a74;
    color: rgba(255, 252, 237, 0.884);
    outline: dashed rgba(255, 252, 237, 0.884);
    outline-offset: -7px;
}


ul li {
    list-style: none;
    font-size: 17px;
    padding: 12px 8px 12px 50px;
    user-select: none;
    cursor: pointer;
    position: relative;
    background-color: #314663;
    border-radius: 20px;
    margin: 20px;
    justify-content: center;
    align-content: center;
    text-align: left;
    color: rgba(255, 252, 237, 0.884);
}

ul li::before {
    content: '';
    background-image: url(https://github.com/sakshiii996/pomodoro_timer/blob/main/unchecked.png?raw=true);
    background-position: center;
    background-size: cover;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    position: absolute;
}

ul li.checked {
    color: rgba(255, 252, 237, 0.884);
    text-decoration: line-through;
}

ul li.checked::before {
    background-image: url(https://github.com/sakshiii996/pomodoro_timer/blob/main/checked.png?raw=true);
}

ul li span {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 5px;
    top: 7.5px;
    font-size: 25px;
    line-height: 30px;
    color: antiquewhite;
    text-align: center;
    border-radius: 50%;
}

ul li span:hover {
    background-color: rgb(98, 132, 180);
}



