@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #111, #1e1e1e, #2b2b2b);
  color: #eaeaea;
  text-align: center;
}


.hero {
  padding: 60px 20px 30px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.hero h2 {
  font-weight: 400;
  color: #aaa;
  font-size: 1.2rem;
}


a {
  color: #fff;             
  text-decoration: none;   
}

a:hover {
  color: #ddd;            
  text-decoration: underline; 
}


.menu {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  background: #3a3a3a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}


.menu a:hover {
  transform: translateY(-3px);
  background: #555;
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}


.about {
  margin: 50px auto;
  padding: 30px;
  max-width: 700px;
  background: #2f2f2f;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.about h2 {
  margin-bottom: 15px;
  color: #fff;
}

.about p {
  font-size: 1rem;
  color: #ddd;
}


footer {
  margin: 60px 0 20px;
  font-size: 0.9rem;
  color: #888;
}
