body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

h1 {
  color: white;
  font-size: 100px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: flex-end; /* Vertically align content to the bottom */
  height: 100%; /* Ensure the container takes up the full height */
}

h2 {
  color: white;
  font-size: 35px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  text-align: bottom;
}

a {
  color: white;
  font-size: 50px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

p {
  color: white;
  font-size: 40px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);}

/* Style the Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 30px;
  color: blue; /* Set the color to violet for the text */
  font-family: "Arial";
}

/* Logo */
.top-bar .logo a {
  font-size: 24px;
  font-weight: bold;
  color: blue; /* Use violet color here for consistency */
  text-decoration: none; /* Removes underline from link */
  font-family: "Arial";
}

.top-bar .logo a:hover {
  text-decoration: underline;
}

/* Navigation Links */
.nav-links {
  display: flex;
}

.nav-links a {
  margin-left: 20px;
  font-size: 18px;
  color: blue; /* Use violet color for navigation links */
  text-decoration: none;
}

.nav-links a:hover {
  color: #ff9800; /* Change color on hover */
}

/* Content area */
.content {
  padding: 50px;
  text-align: center;
}

.content h1 {
  font-size: 48px;
  color: #333;
}

.content p {
  font-size: 20px;
  color: #666;
}
