a {
    text-decoration: none;
}


/* Styling for normal state */
li a {
  color: black; /* Default color */
  text-decoration: none; /* Remove underline */
}

li {
    list-style: none; /* Remove default list styles */
  }
    
li a:hover {
    color: red; /* Color changes to red on hover */
  }
  



 /* Reset default margin and padding */
body, h1, h2, h3, p, ul, ol {
  margin: 0;
  padding: 0;
}

/* Set font family and default font size */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Adjust font size for different elements */
h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

p {
  font-size: 16px;
}

/* Additional styles */
/* Example: Link color */
a {
  color: #007bff; /* Blue */
}

/* Example: Button styles */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Blue */
  color: #fff; /* White */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}
  