* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-repeat: no-repeat;
  background-size: cover;
}
.clock {
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 10px 20px rgba(0, 0, 0, 0.7);
  height: 160px;
  padding: 20px;
  border-radius: 12px;
}
#time {
  font-size: 3.5rem;
  font-weight: 600;
}

#timeformet {
  font-size: 20px;
  font-weight: 600;
  margin: 0.3125rem 0 2.9rem 0;
}


@media (max-width: 400px) {
  .clock {
    max-width: 260px;
    padding: 5px;
    height: 120px;
  }
  #time {
    font-size: 2.4rem;
  }
  #timeformet {
        font-size: 1.1rem;
    }
}