/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root{
    --primary: #F8F4E1;
    --secondary: #381c0a;
    --ternary1: #FEBA17;
    --ternary2: #74512D;
    --red: red;
    --green: lightseagreen;
    --blue: royalblue;
    --black: black;
}
@font-face {
    font-family: normal-aeonik;
    src: url(./fonts/fonnts.com-Aeonik-Regular.ttf);
}

@font-face {
    font-family: bold-aeonik;
    src: url(./fonts/fonnts.com-Aeonik-Bold.ttf);
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: normal-aeonik;
    color: var(--primary);
}
html,
body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
}
header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 60px;
    background-image: url(https://images.unsplash.com/photo-1530908295418-a12e326966ba?q=80&w=2187&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
header .header1 h1{
    font-size: 66px;
    font-weight: 500;
    margin-bottom: 30px;
}
header .header1 h2{
    font-size: 40px;
    font-weight: 500;
}
header .header1 h4{
    font-size: 44px;
    font-weight: 500;
}
header .header2 h2{
    font-size: 52px;
    font-weight: 500;
}
header .header2 h4{
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}
header .header2 h3{
    font-size: 30px;
    font-weight: 500;
    opacity: 0.8;
}
section.allElems{
    height: 100%;
    width: 100%;
    padding: 40px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center
}
.allElems .allFeatures{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.allElems header{
    height: 400px;
    width: 100%;
    background-color: var(--ternary2);
    border-radius: 20px;
}
.elem{
    height: 300px;
    width: 18%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.elem img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.elem h2{
    position: absolute;
    bottom: 4%;
    right: 5%;
    font-weight: 100;
    font-size: 24px;
    font-family: bold-aeonik;
}
.elem:active{
    scale: 0.97;
}
.fullElem{
    height: 100%;
    width: 100%;
    background-color: var(--secondary);
    padding: 40px;
    display: none;
    position: absolute;
}
.back{
    position: absolute;
    right: 5%;
    background-color: var(--red);
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 24px;
    font-weight: 400;
    border: none;
    cursor: pointer;
}
.back:active{
    scale: 0.97;
}

.todo-list-fullpage h2{
    font-size: 44px;
}

.todo-list-fullpage .todo-container{
    height: 80%;
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

}
.todo-list-fullpage .todo-container .addTask{
    width: 33%;
    background-color: var(--ternary2);
    height: 100%;
    border-radius: 20px;
}
.todo-list-fullpage .todo-container .allTask{
    width: 65%;
    background-color: var(--ternary2);
    height: 100%;
    border-radius: 20px;
    padding: 30px;
    overflow: auto;
}
.todo-list-fullpage .todo-container .allTask::-webkit-scrollbar {
  display: none;
}
.todo-list-fullpage .todo-container .addTask form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px;
}
.todo-container .addTask form #task-input{
    padding: 10px 20px;
    width: 100%;
    font-size: 24px;
    background-color: var(--secondary);
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 20px;
}
.todo-container .addTask form textarea{
    padding: 10px 20px;
    max-width: 100%;
    min-width: 100%;
    min-height: 300px;
    width: 100%;
    font-size: 24px;
    background-color: var(--secondary);
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 20px;
}
.todo-container .addTask form button{
    padding: 12px 20px;
    width: 100%;
    font-size: 20px;
    background-color: var(--ternary1);
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 20px;
    font-weight: 700;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    cursor: pointer;
}
.todo-container .addTask form button:active{
    scale: 0.96;
}
.task{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    background-color: var(--secondary);
    padding: 20px 40px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.task h5{
    color: var(--primary);
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.task h5 span{
    background-color: var(--red);
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 0.9px;
    padding: 4px 8px;
    border-radius: 5px;
}
.task h5 span.true{
    opacity: 1;
}
.task h5 span.false{
    opacity: 0;
}
.task button{
    padding: 15px 30px;
    color: var(--primary);
    background-color: var(--green);
    font-size: 18px;
    border-radius: 5px;
    border: none;
    font-weight: 400;
    cursor: pointer;
}
.task button:active{
    scale: 0.97;
}
.mark-imp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding: 8px 10px;
    gap: 20px;
    margin-bottom: 20px;
}
.mark-imp input{
    scale: 2;
}
.mark-imp label{
    font-size: 20px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.daily-planner-fullpage h2{
    font-size: 44px;
}
.daily-planner-fullpage .day-planner{
    background-color: var(--ternary2);
    height: 85%;
    margin-top: 40px;
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.daily-planner-fullpage .day-planner .day-planner-time{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 49%;
    margin-bottom: 14px;
}
.day-planner .day-planner-time p{
    position: absolute;
    top: 12%;
    left: 1%;
    font-size: 18px;
    color: var(--ternary1);
}
.day-planner .day-planner-time input{
    padding: 20px 45px;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 26px;
    padding-top: 34px;
}



.motivation-fullpage{
    position: relative;
}
.motivation-fullPage-container{
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.motivation-fullpage .motivation-container{
    height: 500px;
    width: 60%;
    border-radius: 50px;
    position: relative;
}
.motivation-fullpage .motivation-container::after{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: var(--ternary1);
    border-radius: 50px;
    scale: 1.15;
    z-index: 8;
    -webkit-filter: blur(100px);
            filter: blur(100px);
}
.motivation-fullpage .motivation-container .motivation-wrapper{
    z-index: 10;
    position: absolute;
    border-radius: 30px;
    width: 100%;
    background-color: var(--ternary1);
    padding: 17px;
    border: 4px solid var(--ternary2);
}
.motivation1{
    background-color: var(--ternary2);
    padding: 12px 22px;
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: flex-start;
}
.motivation1 h2{
    font-size: 28px;
    font-weight: 500;
    text-align: right;
}
.motivation2{
    padding: 10px;
    margin-top: 20px;
}
.motivation2 h1{
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}
.motivation3{
    background-color: var(--ternary2);
    padding: 12px 22px;
    border-radius: 20px;
    margin-top: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: flex-end;
}
.motivation3 h2{
    font-size: 28px;
    font-weight: 500;
    text-align: right;
}
.motivation-fullpage .motivation-container .motivation-wrapper img{
    position: absolute;
    right: 5%;
    top: 5%;
    opacity: 0.8;
    width: 66px;
}


.pomodoro-timer-fullpage{
    position: relative;
}
.pomodoro-timer-fullpage h2{
    font-size: 44px;
}
.pomodoro-timer-fullpage .pomo-timer{
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
}
.pomo-timer h1{
    font-size: 130px;
}
.pomo-timer button{
    background-color: var(--ternary2);
    padding: 12px 40px;
    font-size: 24px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 0px var(--black);
            box-shadow: 5px 5px 0px var(--black);
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.pomo-timer button:active{
    scale: 0.95;
    -webkit-box-shadow: 1px 1px 0px var(--black);
            box-shadow: 1px 1px 0px var(--black);
}
.pomodoro-timer-fullpage .session{
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background-color: var(--green);
    padding: 15px 30px;
    font-size: 28px;
    border-radius: 5px;
}
.theme{
    position: absolute;
    top: 2%;
    right: 3%;
    background-color: var(--primary);
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.theme:active{
    scale: 0.96;
}
.theme i{
    color: var(--secondary);
    font-size: 30px;
}