body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.container{
    width: 80%;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.clock {
    width: auto;
    background-color: rgba(255,255,255,0.06);
    padding: 50px 25px;
    border: 1.5px solid rgba(255,255,255,0.06);
    box-shadow: 0 25px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(15px);
}

#time {
  font-family: "Fantasy", Papyrus;
  font-weight: 800;
  font-size: 11vw;
  text-align: center;
}

#date {
  font-family: "Cursive", Lucida Handwriting;
  font-size: 5vw;
  text-align: center;
}

.shape1{
    height: 250px;
    width: 250px;
    position: absolute;
    background: linear-gradient(
        45deg,
        #ff5b84,
        #eb3461
    );
    border-radius: 50%;
    z-index: -1;
    bottom: 100px;
    right: -100px;
}
.shape2{
    height: 250px;
    width: 250px;
    position: absolute;
    background: linear-gradient(
        135deg,
        #426cf8,
        #3ebdf0
    );
    border-radius: 50%;
    top: 100px;
    left: -100px;
    z-index: -1;
}