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

body {
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #222;
}

header h1 a {
  color: cyan;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #ccc;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 8px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: cyan;
}

nav ul li a i {
  margin-right: 5px;
}

/* Landing Section */
.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
  background: url('images/landing-bg.jpg') no-repeat center center/cover;
  color: #fff;
}

.profile {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
}

.profile-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid cyan;
}

.profile h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.profile span {
  color: cyan;
}

.profile p {
  font-size: 1rem;
  margin-top: 10px;
}

/* Book List Styling */
.book-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
  text-align: center;
}

.book-list li {
  font-size: 1.2rem;
  color: cyan;
  margin: 10px 0;
}

.book-list li a {
  color: cyan;
  text-decoration: none;
}

.book-list li a:hover {
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 a {
    font-size: 2rem;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul li a {
    font-size: 1.3rem;
  }

  .landing {
    height: 60vh;
  }

  .profile {
    max-width: 350px;
  }

  .profile h2 {
    font-size: 1.5rem;
  }

  .profile p {
    font-size: 0.9rem;
  }
}
