body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.search-container {
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container img {
  width: 300px; /* İstenilen boyuta göre ayarlayabilirsiniz */
  height:300px; /* İstenilen boyuta göre ayarlayabilirsiniz */
  margin-bottom: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 10px;
  width: 500px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 15px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#searchResults {
  text-align: left;
}

#searchResults a {
  display: block;
  margin-bottom: 10px;
  color: #007bff;
  text-decoration: none;
}

#searchResults a:hover {
  text-decoration: underline;
}
