/* Base Styles */
body {
  background-color: burlywood;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 40px 20px;
  color: #333;
}

/* Layout Container */
.intro-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Text Section */
.intro-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.intro-text h1 {
  font-size: 3em;
  color: #4d3c1e;
  margin-bottom: 10px;
}

.intro-text p {
  font-size: 1.2em;
  margin: 6px 0;
}

/* Start Reading Button */
.button {
  display: inline-block;
  margin: 20px 0;
  background-color:orangered;
  color: #000;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 1.1em;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color:orange;
}

/* Image Section */
.intro-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Navigation List */
.nav-list {
  margin-top: 40px;
}

.nav-list h2 {
  font-size: 1.5em;
  color: #4d3c1e;
  margin-bottom: 15px;
}

.nav-list ul {
  list-style: none;
  padding: 0;
}

.nav-list li {
  margin: 8px 0;
}

.nav-list a {
  text-decoration: none;
  font-size: 1.1em;
  color: #333;
  background:orangered;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: #ffe082;
}