:root {
  --primary-color: rgb(135, 206, 235);
  --secondary-color: rgb(104, 158, 179);
}

.nav_menu li {
  display: flex;
  align-items: center;
  line-height: 36px;
}

.nav_menu li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 1rem;
  background: black;
}

.favicon {
  padding-right: 4px;
  width: 24px;
  height: 24px;
}

header h1 {
  display: flex;
  align-items: center;
}

.btn_back {
  transition: all 0.5s;
  cursor: pointer;
  border: 2px solid var(--primary-color);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 1rem;
}

.btn_back:hover {
  background: var(--primary-color);
  color: white;
}

.float-butt {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  z-index: 100;
  border-radius: 50%;
  cursor: pointer;
  content: url("./assets/dodge.png");
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.movable {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background-color: #f1f1f199;
  border-radius: 1rem;
  width: fit-content;
  height: fit-content;
}

.movable-content span {
  cursor: pointer;
  font-size: xx-large;
  padding: 0.2rem;
}

.button-up::before {
  content: "⬆️";
}

.button-down::before {
  content: "⬇️";
}

.button-left::before {
  content: "⬅️";
}

.button-right::before {
  content: "➡️";
}

.button-pin::before {
  content: "⚙️";
  cursor: move;
  z-index: 11;
}