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

body, html {
  height: 100%;
  font-family: 'Georgia', serif;
  background: black;
  color: white;
  overflow: hidden;
}

#intro-screen {
  position: fixed;
  z-index: 20;
  background: black;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-title {
  font-size: 2.5em;
  letter-spacing: 4px;
  color: white;
}

.date-title {
  font-size: 1.2em;
  letter-spacing: 1.5px;
  color: white;
}


h1 {
  font-size: 2.5em;
  letter-spacing: 4px;
  margin-bottom: 0.5em;
}