
/* General Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(circle, #0f0f0f, #000);
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Section */
header {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f1f1f, #111);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

header h1 {
  font-size: 4rem;
  color: #e63946;
  letter-spacing: 3px;
}

header p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #b0b0b0;
}

/* Main Content Section */
main {
  text-align: center;
  padding: 40px 20px;
}

main h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 20px;
}

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.links a {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #e63946, #1d3557);
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
}

.links a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #1d3557, #e63946);
}

/* Footer Section */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #999;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 2px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
	font-size: 3rem;
  }

  main h2 {
	font-size: 2rem;
  }

  .links a {
	padding: 10px 30px;
	font-size: 0.9rem;
  }
}