html {
    background-color: #121212;
}

body {
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #121212;
    min-width: 350px;
    /* overflow-x: hidden; */
}

header {
    flex: 0 0 auto;
    text-align: center;
}

main {
    flex: 1 0 auto;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #121212;
}

#quest-container {
    width: 100%;
    max-width: 800px;
    background-color: #121212;
}

.dungeon {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.dungeon-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expandable-title {
    cursor: pointer;
}

.dropdown-arrow {
    margin-right: 10px;
    transition: transform 0.3s;
}

.quest {
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #121212;
}

.quest-title {
    font-size: 1.3em;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quest-icons {
    font-size: 1.5em;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.task-checkboxes {
    display: block;
    text-align: right;
}

.task-checkbox {
    transform: scale(2);
    margin-top: 9px;
    margin-left: 15px;
    margin-bottom: 9px;
}

#reset-button {
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

footer {
    flex: 0 0 auto;
    padding: 20px;
    color: #ffffff;
    background-color: #121212;
}

/* width */
::-webkit-scrollbar {
    width: 25px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(106, 106, 106);
    border-radius: 10px;
  }

a {
    color: grey;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}