body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  color: #444444;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  margin: 0 0 4px;
  color: #444444;
  line-height: 0.4;
}

.subhead {
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #444444;
}

.enter-button {
  background-color: #ffffff;
  border: 2px solid #666666;
  color: #666666;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.enter-button:hover {
  background-color: #f2f2f2;
}
