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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f0;
  font-family: Georgia, serif;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.label {
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: #d49ac6;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}