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

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

.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  background-color: #a52a2a; 
  padding: 10px 20px;
  border-radius: 5px;
}

.navbar li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #ffddcc;
}

h1 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #8b0000;
}

h2 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #b22222;
}

h3 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #a52a2a;
}

p, ul {
  max-width: 700px;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

.image-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.image-container img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #ccc;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
