@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background: lightblue;
}

.container {
  width: 90vw;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container #dateTime {
  border: 6px solid black;
  width: 70%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.container #dateTime .time {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

@media (max-width: 750px) {
  .container #dateTime {
    width: 80%;
    height: 200px;
    font-size: 4rem;
    border: 6px solid black;
  }
}

@media (max-width: 500px) {
  .container #dateTime {
    width: 90%;
    height: 100px;
    font-size: 2rem;
    border: 4px solid black;
  }
  .container #dateTime .time {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */