body {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #f4f4f9;
  margin: 0;
  padding: 2px 10px 0 10px;
  display: flex;
  justify-content: center;
}

.logo {
  width: 45%;
  margin-top: 2%;
  margin-left: -50%;
}

.topnav, a {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #d0cbb6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.search-input {
  position: fixed;
  width: 50%;
  padding: 10px 16px;
  margin-top: 35%;
  margin-left: -105px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.search-input:focus {
  border-color: #a3d183;
}

.btn {
  position: fixed;
  padding: 10px 16px;
  margin-top: 35%;
  margin-left: 250px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #a3d183;
  color: white;
  cursor: pointer;
}

.btn:hover {
  background: #a3d183;
}

.result {
  background-color: #f4f4f4;
  padding-top: 25px;
  margin-top: 200px;
  z-index: 5;
}

.result-title {
  margin-bottom: 10px;
  color: #76246d;
}

.result-item {
  margin-bottom: 15px;
    color: #76246d;
}

.result-item ul {
  padding-left: 20px;
}