/* General page settings */
body {
  font-family: Arial, sans-serif;
  background-color: #8aefe2;
  color: #9dc06b;
  margin: 40px;
  line-height: 1.6;
}

/* Header styling */
header {
  text-align: center;
  background-color: #4b7fcc;
  color: rgb(197, 101, 101);
  padding: 20px;
  border-radius: 10px;
}

/* Section headings */
h2 {
  color: #4e9bc4;
  border-bottom: 2px solid #76ccb4;
  padding-bottom: 5px;
}

.title-glow {
  text-shadow: 0 0 8px rgba(166, 206, 200, 0.9),
    0 0 16px rgba(58, 217, 195, 0.6), 0 0 24px rgba(58, 217, 195, 0.4);
}

.title-hover-glow {
  transition: 0.3s ease;
}

.title-hover-glow:hover {
  text-shadow: 0 0 12px rgba(58, 217, 195, 1), 0 0 22px rgba(58, 217, 195, 0.8),
    0 0 30px rgba(58, 217, 195, 0.7);
  cursor: pointer; /* optional: gives that clickable look */
}

/* Paragraph styling */
p {
  margin-bottom: 15px;
}

/* Image styling */
img {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(58, 217, 195, 0.7), 0 0 40px rgba(58, 217, 195, 0.4);
}

/* Unordered list styling */
ul {
  background-color: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  margin: 0 auto;
  list-style-type: square;
}

/* Footer styling */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
}
