@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap");

* {
  padding: 0px;
  margin: 0px;

  border-box: border-box;

  font-family: "Open Sans", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(120deg, #ffe53bd8, #ff2525da);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clock {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 200px;
  width: 550px;
  background: transparent;
  border-radius: 3px;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.5);
}
.clock div {
  height: 170px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;
  color: #fff;
  background: rgba(5, 5, 5, 0.9);

  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.7);
  border-radius: 7px;
  letter-spacing: 3px;
}

.clock span {
  font-weight: bolder;
  font-size: 60px;
}

.clock span.time {
  font-size: 10px;
}
