@font-face {
  font-family: "YanoneKaffeesatz";
  src: url("./YanoneKaffeesatz.ttf");
}
.Container .innerContainer .clockOuter {
  width: 320px;
  height: 160px;
  border-radius: 50%;
  border-radius: 160px 160px 0px 0px;
  margin: 50px auto;
  position: relative;
  padding: 15px;
  /* box-shadow: 0 20px 30px rgb(104 75 106 / 65%); */
  background: var(--bs-background-light);
  box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  z-index: 1;
}
.Container .innerContainer .calendarOuter {
  width: 550px;
  height: 500px;
  border-radius: 50%;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  /* box-shadow: 0 20px 30px rgb(104 75 106 / 65%); */
  background: var(--bs-background-light);
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
  z-index: 0;
  padding-top: 210px;
}
.Container .innerContainer .calendarOuter p {
  margin: 0;
  text-align: center;
  font-family: "YanoneKaffeesatz", sans-serif;
}
.Container .innerContainer .calendarOuter .daymonth {
  font-size: 75px;
  margin: 20px 0;
  color: #424344;
  line-height: 75px;
}
.Container .innerContainer .calendarOuter .year {
  font-size: 35px;
  line-height: 35px;
  margin: 20px 0;
  color: #ddd;
}
.Container .innerContainer .calendarOuter .time {
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  color: #36578a;
}
.Container .innerContainer .clock {
  width: 300px;
  height: 300px;
  border: 0px solid #545271;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  padding: 15px;
  /* box-shadow: 0 20px 30px rgb(104 75 106 / 65%); */
  background: #545271;
}
.Container .innerContainer .outer-clock-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #fefefc;
  overflow: hidden;
}
.Container .innerContainer .outer-clock-face::after {
  transform: rotate(90deg);
}
.Container .innerContainer .outer-clock-face::before,
.Container .innerContainer .outer-clock-face::after,
.Container .innerContainer .outer-clock-face .marking {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: #b8b8c5;
  z-index: 0;
  left: 49%;
}
.Container .innerContainer .outer-clock-face .marking {
  background: #bdbdcb;
  width: 3px;
}
.Container .innerContainer .outer-clock-face .marking.marking-one {
  transform: rotate(30deg);
}
.Container .innerContainer .outer-clock-face .marking.marking-two {
  transform: rotate(60deg);
}
.Container .innerContainer .outer-clock-face .marking.marking-three {
  transform: rotate(120deg);
}
.Container .innerContainer .outer-clock-face .marking.marking-four {
  transform: rotate(150deg);
}
.Container .innerContainer .inner-clock-face {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: #fefefc;
  border-radius: 100%;
  z-index: 1;
}
.Container .innerContainer .inner-clock-face::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 18px;
  margin-left: -9px;
  margin-top: -6px;
  background: #4d4b63;
  z-index: 11;
}
.Container .innerContainer .hand {
  width: 50%;
  right: 50%;
  height: 6px;
  background: #61afff;
  position: absolute;
  top: 50%;
  border-radius: 6px;
  transform-origin: 100%;
  transform: rotate(90deg);
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}
.Container .innerContainer .hand.hour-hand {
  width: 20%;
  z-index: 3;
}
.Container .innerContainer .hand.min-hand {
  height: 3px;
  z-index: 10;
  width: 35%;
}
.Container .innerContainer .hand.second-hand {
  background: #ff5e5e;
  width: 40%;
}

@media only screen and (max-width: 750px) {
  .Container .innerContainer .calendarOuter {
    width: 350px;
  }
}
[data-theme=website] .page-banner {
  padding-bottom: 150px;
  overflow: hidden;
}
[data-theme=website] .clockContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}