body {
  background-color: var(--bg-color);
  min-width: 100vw;
  min-height: 100vh;
}


main {
  position: relative;
  display: flex;
  padding: 5%;
}



/* ------------ WINDOW ----------- */

.window {
  width: 60%;
}
.window section {
  color: white;
  padding: 3% 5% 3% 5%;  
}
.window #firstText {
  text-decoration-line: underline;
  text-decoration-thickness: 0.2rem;
}



/* ---------- TO DO LIST ---------- */

#todoList {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  width: 33%;
  padding: 0;
  font-size: 1rem;
  color: black;
  float: left;
}
#todoList img {
  width: 100%;
  position: relative;
}
#todoList h3 {
  position: absolute;
  top: 12%;
  left: 18%;
  margin: 0;
}
#todoList ul {
  position: absolute;
  top: 16%;
  left: 23%;
  padding: 0;
  padding-left: 5%;
  max-width: 63%;
  max-height: 54%;
  overflow-y: scroll;
}


.done {
  text-decoration-line: line-through;
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}



/* ------------- WEB BUTTONS ---------------- */

#buttons {
  margin: 2% 0 0 37%;
  padding: 0;
}



/* ------------- POPUP 1 (Progress-O-meter) --------------  */

#p1 section {
  font-size: 1rem;
}
#p1 {
  top: 47%;
  right: 20%;
  z-index: 4;
}
#p1 h3 {
  margin: 0;
  margin-bottom: 5%;
}
#p1 ul {
  margin: 0;
  padding: 0;
  padding-left: 15%;
}
#p1 section p {
  color: #4c4c4c;
}
#p1 section a {
  color: green;
}


/* ------------ POPUP 2 (Notice) ----------- */

#p2 {
  top: 20%;
  right: 13%;
  z-index: 3;
}
#p2 section {
  font-size: 1.2rem;
  text-align: center;
}
#p2 h2 {
  margin: 0;
  color: #f7861c;
  background-color: yellow;
}
#p2 section p {
  margin: 0;
  color: #1f1f1f;
}



/* ------------ TOOLBAR ----------- */

#toolBar {
  position: absolute;
  z-index: 1;
  right: 5%;
  display: flex;
  gap: 2%;
  flex-direction: column;
  align-items: center;
  padding: 0.5%;
  width: 4%;
  height: 77%;
  background-color: var(--wd-color);
  border: 0.4rem solid #f8f7f7;
}
#toolBar:hover{
  cursor: pointer;
}


#toolBar a img {
  width: 70%;
  height: 100%;
}


#toolBar a:link {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #f0f0f0;
  border: 0.18rem outset #f0f0f0;
}
#toolBar a:visited {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #f0f0f0;
  border: 0.18rem  outset #f0f0f0;
}
#toolBar a:hover {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #f0f0f0;
  border: 0.18rem  outset #f0f0f0;
}
#toolBar a:active {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #f0f0f0;
  border: 0.18rem inset #f0f0f0;
}