* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.theme-light {
  background-color: #ffffff;
  color: #cc0000;
}

.theme-light #site-title {
  color: #cc0000;
}

.theme-dark {
  background-color: #cc0000;
  color: #ffffff;
}

.theme-dark #site-title {
  color: #ffffff;
}

button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
}
