body {
  background-color: rgb(15, 15, 15);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(40, 40, 40);
  padding: 14px;
  box-sizing: border-box;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
header h1 {
  font-size: 1rem;
  font-family: ps;
  font-weight: 400;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.062745098), #ffffff, rgba(255, 255, 255, 0.062745098));
  -webkit-background-clip: text;
  background-size: 200% 100%;
  color: transparent;
  animation: slide_bg 8s linear infinite;
  text-align: center;
  opacity: 0.9;
  margin: 0;
}

@keyframes slide_bg {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}
.timer-box {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin-top: 125px;
}
.timer-box #the-counter {
  text-align: left;
  padding-left: 20px;
  margin: auto;
  width: 50%;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 350px;
  font-family: ps, sans-serif;
  font-size: 4em;
  font-weight: 600;
  background: linear-gradient(135deg, rgb(255, 70, 70), rgba(235, 0, 0, 0.45));
  -webkit-background-clip: text;
  color: transparent;
  transition: 0.35s;
}

@media screen and (min-width: 650px) {
  #the-counter {
    padding-left: 5% !important;
  }
}
@media screen and (min-width: 850px) {
  #the-counter {
    padding-left: 37px !important;
  }
}
.control-box {
  width: 60%;
  display: flex;
  flex-direction: row;
  min-width: 140px;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  margin-top: 200px;
  transition: ease 1s;
}
.control-box button {
  border: 0px;
  display: block;
  width: 100%;
  background-color: rgb(255, 120, 120);
  color: rgb(42, 0, 0);
  border-radius: 100px;
  padding: 14px;
  font-family: ps;
  font-size: 1.05rem;
  font-weight: 600;
  transition: ease 0.35s;
  margin: 0 7px;
}
.control-box button#resetBtn {
  width: 0%;
  padding: 0;
  display: none;
  margin: 0;
}
.control-box button:hover {
  cursor: pointer;
  background-color: rgb(255, 185, 185);
  opacity: 0.9;
  scale: 0.97;
}

#bottom-menu {
  width: 90%;
  height: 75px;
  display: flex;
  flex-direction: row;
  background-color: rgb(34, 34, 34);
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0px 10px 20px -1px rgba(255, 255, 255, 0.02);
}
#bottom-menu .menu-btn {
  background-color: transparent;
  width: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: ease 0.25s;
}
#bottom-menu .menu-btn:hover {
  background-color: rgba(255, 120, 120, 0.1);
  cursor: pointer;
}
#bottom-menu .menu-btn span, #bottom-menu .menu-btn b {
  width: -moz-fit-content;
  width: fit-content;
}
#bottom-menu .menu-btn span {
  margin: auto auto 3.5px;
  color: white;
  opacity: 0.9;
}
#bottom-menu .menu-btn b {
  margin: 3.5px auto auto;
  font-family: ps;
  color: azure;
  font-weight: 400;
  font-size: 0.9rem;
}

#popupBG {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: ease 0.5s;
  opacity: 0;
}
#popupBG #closePopup {
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -20%);
  background-color: rgba(255, 255, 255, 0.1254901961);
  padding: 8px;
  color: whitesmoke;
  border-radius: 100px;
  transition: 0.25s;
}
#popupBG #closePopup:hover {
  background-color: rgba(255, 255, 255, 0.1882352941);
  opacity: 0.9;
  cursor: pointer;
}

#popupNotif {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(42, 42, 42);
  width: 80%;
  max-width: 430px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
}
#popupNotif h3, #popupNotif p {
  margin: 0;
  font-family: ps;
  color: whitesmoke;
}
#popupNotif h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
#popupNotif p {
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
  opacity: 0.9;
  line-height: 22px;
}

footer {
  position: fixed;
  bottom: 12px;
  color: white;
  opacity: 0.2;
  font-family: ps;
  font-size: 0.6rem;
  font-weight: 300;
  width: 100%;
  text-align: center;
  animation: auto_fade_out 1.5s cubic-bezier(0.76, 0.03, 0.16, 0.99) 10s forwards alternate;
}

@keyframes auto_fade_out {
  100% {
    bottom: -25px;
    opacity: 0;
    visibility: hidden;
  }
}
a {
  color: rgb(255, 137, 157);
  cursor: pointer;
}/*# sourceMappingURL=index.css.map */