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

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url('../assets/images/background.gif') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

header {
  text-align: center;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#searchBar {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}
