@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(130, 87, 229, 0.850577731092437) 50%,
    rgba(4, 211, 97, 1) 100%
  );
  background-image: url(../images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.clock {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 12.5rem;
  width: 34.375rem;
  background: transparent;
  border-radius: 0.188rem;
  box-shadow: 0rem 0.5rem 0.625rem rgba(24, 23, 23, 0.5);
}

.clock div {
  height: 10.625rem;
  width: 9.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(24, 23, 23, 0.9);
  box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(24, 23, 23, 0.7);
  border-radius: 0.4375rem;
  letter-spacing: 0.1875rem;
}

.clock span {
  font-weight: bolder;
  font-size: 3.75rem;
}

.clock span.time {
  font-size: 0.625rem;
}
