/* Centering the page */
body {
  background-color: #0d0d1a;
  color: #fdfdfd;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container to control the layout */
.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
}

/* Title */
h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Todo list styling */
.todo-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  margin: 0 auto;
}

.todo-list li {
  margin-bottom: 1.5rem;
}

label {
  margin-left: 0.5rem;
}

/* Sub-item styling */
.sub-item {
  list-style-type: disc;
  margin-left: 2rem;
}

.sub-item-link {
  text-decoration: none;
  color: #ff4c4c; /* Red nose */
  transition: color 0.2s ease;
}

.sub-item-link:visited {
  color: #4fc3f7; /* Blue wig */
}

.sub-item-link:hover {
  color: #ffeb3b; /* Yellow hair */
}

.sub-item-link:focus {
  outline: 2px solid #00ffae; /* Green outline */
  outline-offset: 2px;
}

.sub-item-link:active {
  color: #ba68c8; /* Purple makeup */
}
