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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #000000;
}

h2 {
  font-size: 1.5rem;
  color: #222222;
  margin-bottom: 2rem;
}

a {
  display: inline-block;
  background: #eeeeee;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  transition: all 0.2s ease;
}

a:hover {
  background: #eeeeee;
  transform: scale(1.07);
  color: #000;
}

	
