.navbar {
  height: 10vh;
  width: 100%;
  box-sizing: border-box;
  padding: 2%;
  position: absolute;
  top: 0;
  display: inline-flex;
  justify-content: end;
  align-items: center;
  color: yellow;
}

.date {
  width: 100%;
  height: 10%;
  color: yellow;
  font-size: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.19);
}
.screen-size {
  width: 100%;
  height: 100vh;
  background: #ffaaaa;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
}
.timeContainer {
  font-size: 10vh;
  background-color: black;
  width: 60%;
  height: 60%;
  text-align: center;
}
.authorCredit {
  width: 40%;
  font-size: 20px;
  color: black;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-direction-column {
  flex-direction: column;
}
.round-corner {
  border-radius: 50px;
}
.showDepth {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Slider */
.toggleBtn {
  display: inherit;
  align-items: inherit;
  gap: 5px;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* For mobile */
@media only screen and (max-width: 600px) {
  .timeContainer {
    font-size: 5vh;
    width: 80%;
    height: 30vh;
  }
  .date {
    font-size: 3rem;
  }
}
