body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1e1e2e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
}
h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #8a8aff;
}
#search-form {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  width: 60%;
}
#query {
  flex: 1;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  background-color: #2e2e3e;
  color: #ffffff;
}
#query::placeholder {
  color: #aaa;
}
button {
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  background-color: #5e5eff;
  color: #ffffff;
  cursor: pointer;
}
button:hover {
  background-color: #4949ff;
}
#results {
  margin-top: 950px;
  list-style: none;
  padding: 0;
  width: 60%;
}
.result-item {
  background: #2e2e3e;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.result-item a {
  text-decoration: none;
  color: #8a8aff;
  font-size: 20px;
}
.result-item a:hover {
  text-decoration: underline;
}
.result-description {
  font-size: 16px;
  color: #cccccc;
}
.summary {
  background: #2e2e3e;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 60%;
  color: #cccccc;
}
