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

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  line-height: 1.5;
}

header {
  background-color: #333;
  padding: 10px;
}
h1{
  margin-bottom: 5px;
}
h2{
  text-align: center;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

section {
  padding: 40px;
}

#intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cover-image {
  max-width: 100%;
}

.cover-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.intro-text {
  max-width: 600px;
  text-align: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top:15px;
}

#about {
  text-align: center;
}

#about p {
  margin-bottom: 10px;
}

.feature {
  margin-bottom: 30px;
  text-align: center;
}

.feature img {
  max-width: 300px;
  border-radius: 4px;
}

.feature h3 {
  margin-top: 10px;
}

footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
