:root {
  --primary-color: #5387c9;
}

.footer {
  background-color: var(--primary-color);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10vw;
  padding: 2vw;
  box-shadow: 3px 3px 8px 6px rgba(0, 0, 0, 0.2);
}

.footer_logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30vw;
  height: 6vw;
  background-color: white;
  border: 2px solid black;
  border-radius: 40px;
  padding-right: 20px;
  margin-bottom: 20px;
  transform-origin: top right;
  transform: rotate(0deg);
  z-index: 1;
  transition: transform 0.2s ease-in-out;
}

.footer_logo.fallen {
  transform: rotate(-13deg);
}

.footer_logo > img {
    height: 7vw;
    rotate: 30deg;
}

.footer_logo>h1 {
  font-size: 3vw;
}

.password_ {
  margin-top: -70px;
  margin-left: -100px;
  margin-bottom: 50px;
}

.footer_copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 1.5vw;
  margin-top: 30px;
}

.footer_copyright>h6 {
  font-size: 1.5vw;
}

/* TASK MANAGER */
#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background: white;
  border: 1px solid black;
  padding: 10px;
  z-index: 1000;
  border-radius: 10px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

/* Soap Box */
#popup2 {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: white;
  border: 1px solid black;
  padding: 30px;
  z-index: 1000;
  border-radius: 10px;
  overflow-y: scroll;
}

#overlay2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

#task_box {
  width: 200px;
  height: 100px;
  border: 1px solid black;
  /* overflow: auto; */
}

.task_item {
  margin-left: -30px;
  cursor: pointer;
}

.task_item.selected {
  background-color: #ddd;
}

#task_submit {
  margin-top: 19px;
  margin-left: 206px;
  cursor: pointer;
}
