:root {
    --pri: #F8F4E1;
    --sec: #381c0a;
    --tri1: #FEBA17;
    --tri2: #74512D;
    --red: red;
    --green: rgb(13, 138, 11);
    --blue: rgb(0, 145, 255);
    --black: black;
}

@font-face {
    font-family: aeonik;
    font-weight: 200;
    src: url(./fonts/AeonikTRIAL-Light.otf);
}

@font-face {
    font-family: aeonik;
    font-weight: 500;
    src: url(./fonts/AeonikTRIAL-Regular.otf);
}

@font-face {
    font-family: aeonik;
    font-weight: 700;
    src: url(./fonts/AeonikTRIAL-Bold.otf);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--pri);
    font-family: aeonik;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-color: var(--sec);
}

section.allElems {
    height: 100%;
    width: 100%;
    padding: 20px 40px;
    position: absolute;
}

.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;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 40px;
}

.allElems nav {
    height: 50px;
    width: 100%;
    background-color: var(--tri2);
    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;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 20px;
}

.allElems nav h2 {
    font-size: 30px;
}

.allElems nav .changeTheme {
    font-size: 16px;
    padding: 10px 20px;
    background-color: var(--pri);
    color: var(--sec);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    -webkit-transition: all ease 0.1s;
    -o-transition: all ease 0.1s;
    transition: all ease 0.1s;
}

.allElems nav button:active {
    scale: 0.98;
}

.allElems header {
    height: 240px;
    width: 100%;
    background-image: url(https://images.unsplash.com/photo-1717361279773-b2e7ee713d2e?q=80&w=3869&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    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: 40px;
}

.header1 h1 {
    font-size: 60px;
    font-weight: 700;
}

.header1 h4 {
    font-size: 50px;
    font-weight: 500;
}

.header2 h2 {
    font-weight: 700;
    font-size: 50px;
}

.header2 h4 {
    font-size: 25px;
    line-height: 1.2;
}

.elem {
    height: 320px;
    width: 250px;
    background-color: var(--tri1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
    cursor: pointer;
}

.elem img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.elem h2 {
    position: absolute;
    bottom: 3%;
    right: 5%;
    font-weight: 500;
    font-size: 23px;
}

.elem:active {
    scale: 0.96;
}

.fullElem {
    height: 100%;
    width: 100%;
    background-color: var(--sec);
    padding: 15px 20px;
    display: none;
    position: absolute;
}

.back {
    position: absolute;
    right: 4%;
    font-size: 20px;
    padding: 10px 12px;
    background-color: var(--red);
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.back:active {
    scale: 0.97;
}

.todo-list-fullpage h2 {
    font-size: 40px;
}

.todo-list-fullpage .todo-container {
    height: 85%;
    width: 100%;
    margin-top: 40px;
    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 {
    height: 100%;
    width: 33%;
    background-color: var(--tri2);
    border-radius: 20px;
}

.todo-list-fullpage .todo-container .allTask {
    height: 100%;
    width: 65%;
    background-color: var(--tri2);
    border-radius: 20px;
}

.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 input#task-input {
    padding: 15px 20px;
    width: 100%;
    font-size: 25px;
    background-color: var(--pri);
    color: var(--sec);
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 20px;
}

.todo-container .addTask form textarea {
    padding: 15px 20px;
    width: 100%;
    font-size: 25px;
    background-color: var(--pri);
    color: var(--sec);
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 10px;
}

.todo-container .addTask form button {
    padding: 15px 20px;
    width: 100%;
    font-size: 25px;
    background-color: var(--tri1);
    border-radius: 10px;
    border: none;
    outline: none;
    color: #2f1b08;
    cursor: pointer;
    font-size: 25px;
    font-weight: 700;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.todo-container .addTask form button:active {
    scale: 0.97;
}

.todo-list-fullpage .todo-container .allTask {
    height: 100%;
    width: 65%;
    background-color: var(--tri2);
    border-radius: 20px;
    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: 20px 30px;
    overflow: auto;
}

.task {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 13px 25px;
    background-color: var(--pri);
    border-radius: 10px;
    margin-bottom: 13px;
}

.task h5 {
    font-size: 30px;
    color: var(--sec);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7px;
}

.task h5 span {
    background-color: var(--red);
    color: var(--pri);
    padding: 5px 7px;
    border-radius: 50px;
    font-size: 11px;
}

.task h5 span.true {
    opacity: 1;
}

.task h5 span.false {
    opacity: 0;
}

.task button {
    padding: 10px 15px;
    color: var(--pri);
    background-color: var(--green);
    border-radius: 10px;
    border: none;
    font-size: 14px;
    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;
    gap: 10px;
    padding: 10px 10px;
}

.mark-imp input {
    scale: 1.5;
}

.mark-imp label {
    font-size: 20px;
}

.daily-planner-fullpage h2 {
    font-size: 40px;
}

.day-planner {
    background-color: var(--tri2);
    height: 85%;
    padding: 20px;
    margin-top: 25px;
    border-radius: 20px;
    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;
    overflow: auto;
}

.day-planner .daily-planner-time {
    background-color: var(--sec);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 49%;
    color: var(--tri1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.day-planner .daily-planner-time input {
    padding: 10px 25px;
    width: 100%;
    border-radius: 5px;
    border: none;
    background-color: var(--sec);
    outline: none;
    font-size: 25px;
    padding-top: 30px;
}

.day-planner .daily-planner-time p {
    position: absolute;
    top: 10%;
    color: var(--tri1);
    left: 2%;
}

.motivation-fullPage-container {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.motivational-fullpage .motivation-container {
    height: 400px;
    width: 80%;
    border-radius: 50px;
    position: relative;
}

.motivational-fullpage .motivation-container::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: var(--tri1);
    border-radius: 50px;
    scale: 1.15;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    z-index: 8;
}

.motivational-fullpage .motivation-container .motivation-wrapper {
    z-index: 10;
    position: absolute;
    width: 100%;
    background-color: var(--tri1);
    padding: 20px;
    border-radius: 30px;
    border: 3px solid var(--tri2);

}

.motivation-1 {
    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;
}

.motivation-1 h2 {
    background-color: var(--tri2);
    padding: 20px;
    border-radius: 20px;
    font-size: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 300;
    text-align: right;
}

.motivation-2 {
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 30px;

}

.motivation-2 h1 {
    font-size: 40px;
    font-weight: 500;
    color: var(--sec);

}

.motivation-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.motivation-3 h2 {
    color: var(--tri2);
    padding: 30px;
    font-size: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    text-align: right;
}

.motivational-fullpage .motivation-container .motivation-wrapper img {
    position: absolute;
    right: 5%;
    opacity: 0.2;
    top: 5%;
    height: 90px;
}

.pomodoro-fullpage h2 {
    font-size: 50px;
}

.pomo-timer {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.pomo-timer h1 {
    font-size: 100px;
    font-weight: 700;
    margin-top: 50px;
}

.pomo-timer button {
    font-size: 25px;
    background-color: var(--tri2);
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    -webkit-box-shadow: 5px 5px 0px var(--black);
    box-shadow: 5px 5px 0px var(--black);
    -webkit-transition: all ease 0.1s;
    -o-transition: all ease 0.1s;
    transition: all ease 0.1s;
}

.pomo-timer button:active {
    -webkit-box-shadow: 0px 0px 0px var(--black);
    box-shadow: 0px 0px 0px var(--black);
}

.pomodoro-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: 30px;
    border-radius: 5px;
}

.daily-goals-fullpage {
    padding: 30px;
}

.daily-goals-fullpage h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.goal-container {
    background-color: var(--tri2);
    padding: 30px;
    border-radius: 20px;
    height: 80%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.add-goal-form {
    display: flex;
    gap: 20px;
}

.add-goal-form input {
    flex: 1;
    padding: 15px 20px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    outline: none;
    color: var(--sec);
    background-color: var(--pri);
}

.add-goal-form button {
    background-color: var(--tri1);
    color: var(--sec);
    font-size: 20px;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--pri);
    color: var(--sec);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
}

.goal-item span {
    color: var(--sec);
    font-size: 30px;
}

.goal-item button {
    background-color: var(--green);
    color: var(--pri);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.goal-item button:active {
    scale: 0.97;
}