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

.container {
  background: url(./Morning_Clock_Background.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}
.clock {
  position: absolute;
  right: 20vw;
  top: 15vh;
  width: 40vw;
  background-color: antiquewhite;
  /* align-self: center; */
  font-family: "Black Ops One", cursive;
  font-size: 7vw;
  text-align: center;
  text-shadow: 0px 2px 3px lightgrey;
  background-color: black;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
}
@media (min-width: 900px) {
  .clock {
    font-size: 3rem;
    width: 30vw;
    right: 28vw;
  }
}
@media (min-width: 1700px) {
  .clock {
    top: auto;  
    bottom: 40vw;
  }
}
