body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #181818;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #181818;
    color: #e0e0e0;
  }
  main {
    background-color: #181818;
    color: #e0e0e0;
  }
  #searchBar {
    background-color: #222;
    color: #e0e0e0;
  }
  #gif-list li {
    background-color: #222;
  }
  #gif-list li a {
    color: #e0e0e0;
  }
}
@media (prefers-color-scheme: light) {
  body {
    background-color: #f9f9f9;
    color: #333333;
  }
  main {
    background-color: #f9f9f9;
    color: #333333;
  }
  #searchBar {
    background-color: #e8e8e8;
    color: #333333;
  }
  #gif-list li {
    background-color: #f2f2f2;
  }
  #gif-list li a {
    color: #333333;
  }
}
main {
  width: 100%;
  max-width: 700px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

h1 {
  text-align: center;
  font-size: 2em;
  margin: 0 0 20px 0;
  color: #D32232;
  width: 100%;
}

#searchBar {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #444;
  box-sizing: border-box;
  font-size: 1.1em;
}

#searchBar::-moz-placeholder {
  color: #888;
}

#searchBar::placeholder {
  color: #888;
}

#searchBar:focus {
  border-color: #D32232;
  outline: none;
}

#gif-list {
  list-style: none;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

#gif-list li {
  margin-bottom: 10px;
  border-radius: 5px;
}

#gif-list li a {
  display: block;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.3s, color 0.3s;
  padding: 18px 20px;
  border-radius: 5px;
}

#gif-list li a:hover {
  background-color: #D32232;
  color: white;
}