* {
  transition: all ease 0.5s;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100% max-content;
  height: 100% max-content;
  background-color:  var(--bcg-color);
  scroll-behavior: smooth;
  /* background-color: rgb(20, 15, 19); */
}
#moveToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
}

#moveToTopBtn:hover {
  background-color: var(--hover-color);
}

#moveToBottomBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  margin-left: 20px;
  right: 20px;
  left: 0;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
}

#moveToBottomBtn:hover {
  opacity: 1;
  background-color: var(--hover-color);
}

/* THEME COLORS  */

/* GREEN */
:root {
 
  --bcg-color: white;
  --text-color: #03001C;



  --main-color: #d4010b;
  --hover-color: #a10109;
  
}
/* YELLOW */
.green-mode {
  --main-color: #e4af00;
  --hover-color: #ac8402;
}
/* RED */
.red-mode {
  --main-color: #018116;
  --hover-color: #01550f;
}

.dark-mode {
  --bcg-color: #02000f;
  --text-color: white;
}
.light-mode {
  --bcg-color: white;
  --text-color: #03001C;

}



