@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cabin:wght@500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Anton', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 88%;
  color: white;
}

#time {
  font-size: 8rem;
  text-shadow: -3px -3px 4px rgba(0,0,0,.65);
}

h1 {
  margin-bottom: 3rem;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  text-shadow: -1.5px -1.5px 2px rgba(0,0,0,.65);
  font-size: 3rem;
}

h2 {
  margin-bottom: 0.5rem;
  opacity: 0.6;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  text-shadow: -1.5px -1.5px 2px rgba(0,0,0,.65);
  font-size: 2rem;
}

.joke-box {
  max-width: 40%;
}

@media(max-width: 1000px) {
  .joke-box {
    max-width: 70%;
  }
}
