body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
}

.greeting {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  color: #888;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #555;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.links a {
  color: #666;
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.links a i {
  font-size: 1.5rem;
}

.links a:hover {
  color: #333;
  border-color: #999;
  background-color: #fff;
  transform: translateY(-2px);
}
