body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
* {
    appearance: none;
}
@keyframes scalein {
    from {
        opacity: 0%;
        transform: scale(0.9);
    }
    to {
        opacity: 100%;
        transform: scale(1);
    }
}
@keyframes contentin {
    from {
        opacity: 0%;
        transform: scale(0.7);
    }
    to {
        opacity: 100%;
        transform: scale(1);
    }
}
[contenteditable] {
    outline: 0px solid transparent;
}
*::-webkit-scrollbar {
    width: 12px;
}
*::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.5);
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 12px;
}
*::-webkit-scrollbar-thumb:active {
    border: 2px solid transparent;
}
*::-webkit-scrollbar-corner {
    background-color: transparent;
}
h1, h2, h3, h4, h5, h6 {
    color: white;
    margin: 30px;
}
p {
    color: black;
    margin: 10px;
    font-size: 18px;
}
span {
    margin: 0;
    font-size: 18px;
}
a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}
a:hover {
    text-decoration: underline;
}
h1 {font-size: 35px}
.fontheader {
    font-family: 'Tektur' !important;
    margin: 0;
}
h2 {font-size: 30px}
h3 {font-size: 25px}
h4 {font-size: 20px}
h5 {font-size: 15px}
h6 {font-size: 10px}
.xpbar {
    margin: 30px;
    background: black;
    width: calc(100% - 60px);
    border-radius: 10px;
    position: relative;
    animation: scalein 1s;
}
.xpwidth {
    width: 0%;
    height: 10px;
    transition: width 0.75s;
    border-radius: 10px;
}
.xplevel {
    position: absolute;
    text-shadow: 2px 2px 3px black;
    width: 100%;
    font-size: 20px;
    text-align: center;
    top: -17.5px;
}
.main {
    text-align: center;
    animation: scalein 1s;
    font-size: 40px;
}
@media only screen and (max-width: 700px) {
    .main {
        font-size: 30px;
    }
}
.tasks {
    border-radius: 10px;
    margin: 30px;
    margin-bottom: 0;
    width: calc(100% - 60px);
    height: calc(100vh - 170px);
    overflow: auto;
    animation: scalein 1s;
}
.task {
    border-bottom: 1px solid black;
    padding: 15px;
    transition: all 1s;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
}
.addnewtask {
    border: none;
    padding: 15px;
    color: white;
    margin: 0;
    font-size: 18px;
    background: rgba(0,0,0,0.2);
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.task:nth-child(2) {
    border-top: 1px solid black !important;
}
.task:last-child {
    border-bottom: none !important;
}
.lowpriority:before {
    content: " ";
    font-weight: bold;
}
.normalpriority:before {
    color: red;
    content: " ! ";
    font-weight: bold;
}
.highpriority:before {
    color: red;
    content: " !! ";
    font-weight: bold;
}
.debugpriority:before {
    color: green;
    content: " Debug ";
    font-weight: bold;
}
.rewardpriority:before {
    color: hotpink;
    content: " Reward ";
    font-weight: bold;
}
.checkbox {
    width: 18px;
    height: 18px;
    aspect-ratio: 1 / 1;
    background: transparent;
    margin-right: 5px;
    display: inline;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0,0,0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}
.checkbox:not(:disabled):hover {
    box-shadow: -2px 2px 0 rgba(100,100,100);
    transform: translateX(2px) translateY(-2px);
}
.checkbox:not(:disabled):active {
    box-shadow: 2px -2px 0 rgba(100,100,100);
    transform: translateX(-2px) translateY(2px);
}
.checkbox:disabled {
    cursor: default;
}
.confetti {
    aspect-ratio: 8 / 6;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: none;
}
.modaloverlay {
    background: rgba(0,0,0,0.5);
    opacity: 0%;
    transition: opacity 1s;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.modal {
    width: 50%;
    background: black;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    animation: bounce 1s;
    display: none;
}
.logoverlay {
    background: rgba(0,0,0,0.5);
    opacity: 100%;
    transition: opacity 1s;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.logmodal {
    width: 50%;
    background: black;
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    animation: bounce 1s;
    flex-direction: column;
    padding: 40px;
}
.logok {
    background: rgba(0,100,0);
    color: white;
    font-family: 'Tektur';
    font-size: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 40px;
    margin-top: 20px;
    transition: transform 0.2s;
}
.logtext {
    color: white;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'Outfit';
}
.changelog {
    background: rgba(30,30,30);
    padding: 5px;
    max-height: 150px;
    overflow: auto;
}
.changelogtext {
    margin: none;
    color: white;
    font-family: 'Outfit';
    font-size: 12px;
}
@media only screen and (max-width: 900px) {
    .logmodal {
        width: calc(100% - 80px);
        height: calc(100% - 80px);
        background: black;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        animation: none;
    }
    .changelog {
        max-height: 75%;
    }
}
@keyframes bounce {
    0% {
        transform: scale(0);
    }
    25% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.modalform {
    width: calc(100% - 100px);
    margin: 50px;
}
.modalform h2 {
    text-align: center;
}
@media only screen and (max-width: 900px) {
    .modalform {
        width: calc(100% - 20px);
        margin: 10px;
    }
    .modal {
        width: 100%;
        height: 100%;
        background: black;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        animation: none;
    }
}
.taskname {
    width: calc(100% - 50px);
    font-size: 20px;
    padding: 10px;
    margin: 10px;
    background: black;
    border: 2px solid white;
    border-radius: 40px;
    font-family: 'Outfit';
    color: white;
    cursor: text;
}
.taskname::placeholder {
    color: rgba(100,100,100);
    opacity: 1;
}
.taskpriority {
    width: calc(100% - 30px);
    font-size: 20px;
    padding: 10px;
    margin: 10px;
    background: black;
    border: 2px solid white;
    border-radius: 40px;
    font-family: 'Outfit';
    color: rgba(100,100,100);
    cursor: text;
}
.taskname:focus, .taskpriority:focus {
    outline: none;
}
.taskcreate {
    background: rgba(0,100,0);
    color: white;
    font-family: 'Tektur';
    font-size: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 30%;
    height: 40px;
    margin-left: 10px;
}
.taskcancel {
    background: rgba(100,0,0);
    color: white;
    font-family: 'Tektur';
    font-size: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 30%;
    height: 40px;
    margin-left: calc(20% - 10px);
}
.taskcreate, .taskcancel {
    transition: transform 0.2s;
}
.taskcreate:hover, .taskcancel:hover, .logok:hover {
    transform: scale(1.05);
}
.taskcreate:active, .taskcancel:active, .logok:active {
    transform: scale(0.95);
}
.menu {
    width: calc(50% - 150px);
    background: rgba(0,0,0,0.5);
    height: calc(100% - 150px);
    display: none;
    position: absolute;
    right: 35px;
    top: 35px;
    margin-right: 35px;
    padding: 40px;
    overflow: auto;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 1s;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
@media only screen and (max-width: 950px) {
    .menu {
        width: calc(100% - 80px);
        height: calc(100% - 80px);
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(5px);
        margin-right: 0;
        top: 0;
        right: 0;
        border-radius: 0px;
    }
}
.menumain {
    margin: 0;
    text-shadow: 3px 3px 7px black;
    width: calc(100% - 50px);
    word-wrap: break-word;
    font-family: 'Tektur';
}
.menumainicon {
    font-family: 'Material Symbols Outlined';
    display: inline-block;
    margin-right: 10px;
    font-size: 30px;
}
.menutext {
    margin: 0;
    text-shadow: 3px 3px 7px black;
    color: white;
    font-size: 15px;
    font-family: 'Outfit';
}
.rewardbox {
    border: 2px solid white;
    padding: 10px;
    margin-top: 10px;
    display: block;
}
.italicmenu {
    color: gray;
}
.menudivider {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid white;
    border-radius: 2px;
}
.menuul {
    color: white;
    padding: 0;
    list-style-type: none;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
}
.menuul li {
    padding: 10px;
    transition: 0.2s all;
    cursor: pointer;
}
.menuul li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.menuul li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.menuul li:hover {
    background: rgba(255,255,255,0.5);
}
.menuul li span:focus {
    cursor: text;
}
.rewardcheck {
    appearance: checkbox !important;
    width: 13px;
    height: 13px;
    margin: 0;
    margin-right: 5px;
}
.rewardcolor {
    width: 100%;
    height: 40px;
    margin-top: 5px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    outline: 0;
}
.menuinput {
    background: white;
    border: 2px solid gray;
    padding: 5px;
    font-size: 13px;
    font-family: 'Outfit';
    margin-top: 10px;
    width: calc(100% - 15px);
    border-radius: 5px;
    transition: 1s border;
    cursor: pointer;
}
.menuinput:focus {
    outline: none;
    border: 2px solid #3760db;
    cursor: text;
}
.menuinput::placeholder {
    color: rgba(100,100,100);
    opacity: 1;
}
.rewardcolor::-webkit-color-swatch {
    border: 1px solid white;
    border-radius: 10px;
}
.rewardcolor::-webkit-color-swatch-wrapper {
    padding: 0;
}
.content {
    width: calc(100% - 70px);
    position: absolute;
    top: 0;
    right: 0;
    animation: contentin 1s;
}
.buttonmenu {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    height: calc(100% - 40px);
    width: 50px;
    padding: 10px;
    flex-direction: column;
    background: black;
    animation: scalein 1s;
    border-radius: 10px;
}
.tooltip {
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(50,50,50,0.7);
    color: white;
    font-size: 16px;
    position: absolute;
    left: 90px;
    border-radius: 5px;
    z-index: 1;
    font-family: 'Outfit';
    display: none;
}
.menubutton {
    width: 50px;
    height: 50px;
    font-family: 'Material Symbols Outlined';
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    border: 1px solid transparent;
    color: inherit;
    text-shadow: 0px 0 5px black;
}
.menubutton:hover {
    background: rgba(255,255,255,0.1);
}
.menubutton:active {
    background: transparent;
    border: 1px solid white;
    outline: 1px solid gray;
}
.minibutton {
    padding: 10px 15px;
    border: 0px solid transparent;
    background: transparent;
    font-size: 15px;
    border-radius: 45px;
    cursor: pointer;
    transition: all 0.2s;
    color: inherit;
    text-shadow: 0px 0 5px black;
    font-family: 'Outfit';
}
.minibutton:hover {
    background: rgba(255,255,255,0.1);
}
#deletereward {
    outline: none;
    border: none;
}
.minibutton:active {
    background: transparent;
    border: 1px solid white;
    outline: 1px solid gray;
}
.minibutton.active {
    background: red;
    text-shadow: 0 0 0 black;
    cursor: not-allowed;
}
.minibutton.active:active {
    background: darkred;
    text-shadow: 0 0 0 black;
    cursor: not-allowed;
}
.closebutton {
    position: absolute;
    right: 40px;
    top: 30px;
    color: white;
}
.notification {
    width: 100%;
    background: rgba(30,30,30);
    color: white;
    width: calc(90% - 110px);
    position: fixed;
    bottom: 100%;
    left: calc(5% + 70px);
    z-index: 1;
    padding: 20px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 3px 3px 2px rgba(255,255,255,0.5);
    font-family: 'Outfit';
    animation: notification 5s;
}
@keyframes notification {
    0% {
        bottom: -100%;
    }
    10% {
        bottom: 50%;
    }
    90% {
        bottom: 50%;
    }
    100% {
        bottom: calc(100% + 200px);
    }
}
xpvalue:before {
    content: "XP Value: "
}
randnum:before {
    content: "ID: "
}
xpvalue,randnum {
    font-family: 'Outfit';
    font-size: 15px;
    margin: 10px;
}