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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

/* Header Styles */
header {
  background-color: #0d6efd;
  color: #fff;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2rem;
}

/* Article Styles */
main article {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Homepage List */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

ul li:hover {
  transform: translateY(-2px);
}

ul li a {
  font-size: 1.2rem;
  color: #333;
  display: block;
}