body {
  background-color: #161414;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin: 0;
}

header {
  background-color: #0d9f41;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 32px;
}

h2 {
  color :#0d9f41;
}

.suche {
  background-color: #fff;
  border-radius: 5px;
  padding: 4px;
  border: none;
  margin-right: 8px;
  width: 300px;
  height: 30px;
}

.button-suche {
  background-color: orange;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  transition: 0.2s;
  border: 2px solid orange;
}

.button-suche:hover {
  background-color: #8f5c00;
  border-color: white;
}

.button-suche:active {
  background-color: #624309;
}

.view-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 100vw;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 8px;
}

.film-container > img {
  border-radius: 5px;
  max-height: 160px;
}

.search-result > img {
  border-radius: 5px;
  max-height: 160px;
}

.search-result {
  display: flex;
  flex-direction: row;
  text-align: left;
  font-size: 12px;
  gap: 8px;
  margin-top: 10px;
}

.suche-button {
  background-color: #fff;
  color: rgb(85, 85, 85);
  border-radius: 5px;
  border: none;
  width: 50px;
  height: 30px;
}

.search-result-likesDislikesContainer {
  display: flex;
  flex-direction: row;
  text-align: left;
  font-size: 12px;
  gap: 20px;
}