* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #08001f, #30197d);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  width: 800px;
  height: 180px;
  position: absolute;
}
.clock {
  width: 100%;
  height: 100%;
  background: rgba(235, 0, 255, 0.11);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(40px);
}
.main::before {
  content: "";
  width: 180px;
  height: 180px;
  background: #f41b75;
  border-radius: 5px;
  position: absolute;
  left: -50px;
  top: -50px;
}
.clock span{
    font-size: 80px;
    width: 110px;
    /* display: inline-block; */
    text-align: center;
    position: relative;
}
.clock span::after{
    font-size: 16px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
#hour::after{
    content: 'HOURS';
}
#mins::after{
    content: 'MINS';
}
#seconds::after{
    content: 'SECS';
}
