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

body {
  height: 100vh;
  background: linear-gradient(to bottom, #000000, #111111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  color: #ccc;
}

.clickable-area {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.container {
  text-align: center;
}

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

h2 {
  font-size: 1.5rem;
  color: #666666;
  font-weight: 300;
  letter-spacing: 0.5px;
}
