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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #202020;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}

.title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ddd;
}

.subtitle {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 40px;
}

.searchbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.input-field {
  padding: 12px 20px;
  width: calc(100% - 50px);
  border-radius: 25px;
  border: 2px solid #333;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  background-color: #333;
  color: #f2f2f2;
  margin-right: 10px;
}

#go {
  padding: 12px 20px;
  border-radius: 50%;
  border: none;
  background-color: #555;
  color: #f2f2f2;
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

#go:hover {
  background-color: #777;
  transform: scale(1.05);
}

#go i {
  font-size: 18px;
}

.input-field::placeholder {
  animation: placeholderFade 1.5s infinite;
}

@keyframes placeholderFade {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.input-field:focus {
  border-color: #add8e6;
  box-shadow: 0 0 8px rgba(173, 216, 230, 0.7);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}
