* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #6FD1B5;
}
body .main {
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
body .main__clock {
  background-color: black;
  background-position: center;
  width: 500px;
  height: 100px;
  padding: 3.5rem 4rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 106px 0px rgba(255, 255, 255, 0.498);
  -webkit-box-shadow: 0px 0px 106px 0px rgba(255, 255, 255, 0.392);
  -moz-box-shadow: 0px 0px 106px 0px rgba(255, 255, 255, 0.328);
}
body .main__clock__time {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 5.5rem;
  color: white;
}
body .main__clock__format {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  position: relative;
  left: 28rem;
  bottom: 3rem;
}

@media screen and (max-width: 767px) {
  body .main {
    height: 650px;
  }
  body .main__clock {
    width: 250px;
    height: 50px;
    padding: 2.5rem 2rem;
  }
  body .main__clock__time {
    font-size: 2.5rem;
  }
  body .main__clock__format {
    left: 13.3rem;
    bottom: 1.8rem;
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */