body {
  background-color: #283044;
  min-width: 100vw;
  min-height: 100vh;
}


main {
  position: relative;
  display: flex;
  padding: 5%;
}



/* ------------ WINDOW ----------- */

.window {
  width: 60%;
}
.window section {
  color: black;
  padding: 3% 5% 3% 5%;   
}
.window h2 {
  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: #b1b1b1;
}
#p1 section a {
  color: rgb(0, 255, 0);
}


/* ------------ 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: black;
}



/* ------------ 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: #535878;
  border: 0.4rem solid #181818;
}
#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: #414141;
  border: 0.18rem outset #414141;
}
#toolBar a:visited {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #414141;
  border: 0.18rem  outset #414141;
}
#toolBar a:hover {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #414141;
  border: 0.18rem  outset #414141;
}
#toolBar a:active {
  padding: 10%;
  width: 95%;
  height: 7%;
  text-align: center;
  background-color: #414141;
  border: 0.18rem inset #414141;
}