* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #091921;
  display: flex;
  justify-content: center;
  align-items: center;
}
section:before {
  content: "";
  position: absolute;
  top: 10%;
  right: 20%;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  background: linear-gradient(to right, #ad5389, #3c1053);
  animation: animate 5s ease-in-out infinite;
}
section:after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  background: linear-gradient(to right, #355c7d, #6c5b7b, #c06c84);
  animation: animate 5s ease-in-out infinite;
}
@keyframes animate {
  0%, 100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-20px);
  }
}
section .clock {
  position: relative;
  width: 700px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}
section .clock .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
section .clock .container .element {
  font-size: 6em;
  color: white;
}
section .clock .container .element.seconds {
  color: #89216b;
}
section .clock .container .element:nth-child(odd) {
  padding: 5px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
section .clock .zone-container {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}
section .clock .zone-container .zone {
  color: grey;
  padding: 0.6rem;
  font-size: 2em;
  border: 4px solid #091921;
  border-radius: 10px;
  background-color: #091921;
  box-shadow: 0 -8px 15px rgba(255, 255, 255, 0.05), 10px 10px 10px rgba(0, 0, 0, 0.3), inset -8px -8px 15px rgba(255, 255, 255, 0.05), inset 10px 10px 10px rgba(0, 0, 0, 0.3);
}