body {
  background: #141414;
  color: white;
  font-family: arial;
  text-align: center;
}

#logo {
  width: 300px;
}

input {
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  max-width: 400px;
}

input[type="submit"] {
  background: black;
  color: white;
  border: solid white 1px;
}

#results {
  text-align: left;
  width: 800px;
  border: solid white 1px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  color: black;
  border-radius: 20px;
}

h1 {
  margin-left: 50px;
}

ul {
  list-style-type: none;
}

li {
  padding: 10px;
}

footer a {
  color: #999;
  text-decoration: none;
}

footer a:hover {
  color: #666;
  text-decoration: underline;
}

/* Styles for screens smaller than 600px */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  input {
    font-size: 18px;
    padding: 3px;
    border-radius: 3px;
    max-width: 100%;
  }

  #logo {
    width: 200px;
  }

  #results {
    width: 100%;
    margin: 10px 0;
  }

  h1 {
    margin-left: 0;
    font-size: 24px;
  }

  li {
    padding: 5px;
    font-size: 16px;
  }
}

/* Dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown select {
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  max-width: 400px;
  height: 34px; /* add this line to set the same height as the search bar */
}

.dropdown::after {
  content: "\25BC";
  font-size: 15px;
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
}

.dropdown:hover::after {
  content: "\25B2";
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container input[type="text"],
.search-container select,
.search-container input[type="submit"] {
  height: 40px;
  margin: 0;
}
