body {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: roboto, sans-serif;

  margin: 0;

  color: #fff;
  background-color: #0f1c24;
  overflow-x: hidden;
}

header {
  background-color: #0b1318;
  border-bottom: 2px solid #142028;
}

header section {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  min-height: 60px;
}

header section div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 60px;
}

header section input {
  width: 250px;
  padding: 10px;

  color: white;
  background-color: #142028;
  border: none;
  border-radius: 8px;
  outline: none;
}

.search_hint {
  font-size: 14px;
  color: #999;
  margin-top: 6px;
}

.no_results {
  text-align: center;
  color: #aaa;
  margin-top: 24px;
}

main {
  height: calc(100vh - 184px);
  overflow-y: auto;
}

main section {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  padding: 40px 20px;
  gap: 20px;

  overflow-x: hidden;
}

footer {
  height: 80px;

  background-color: #0b1318;
  border-top: 2px solid #142028;
}