/* home.css – FIXED VERSION */

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

body {
  height: 100vh;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);

  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  color: white;
  max-width: 700px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

a {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;

  background-color: #00eaff;
  color: #0f2027;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 234, 255, 0.4);
}
