* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  min-height: 90dvh;
  line-height: 1.5;
  margin: 0 10px;
}
.array {
  max-width: 500px;
  width: 100%;
  font-size: 1rem;
  background: rgb(11, 11, 46);
  color: rgb(255, 255, 255);
  border-radius: 10px 10px;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 100px;
}

h1 {
  text-align: center;
  margin-block: 15px;
}

.search_results div {
  display: flex;
  width: 100%;
  justify-content: center;
}

.search_results li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 15px;
}

ul li {
  list-style: none;
  padding-left: 0;
  margin: auto;
}

fieldset {
  padding: 1rem;
  border-radius: 8px;
}

footer {
  position: absolute;
  bottom: 0;
  height: auto;
  left: 0;
  right: 0;
  background: #181818;
  color: white;
  text-align: center;
  padding: 0.2vh;
  font-size: 13px;
}
input {
  margin-top: 10px;
  border: 1px solid #181818;
  border-radius: 8px;
  padding: 6px 10px;
}
form {
  text-align: center;
}
label {
  cursor: pointer;
}
.emoji_icon {
  width: 100px;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 650px) {
  h1 {
    margin-block: 0;
    text-wrap: balance;
  }
  .container {
    margin: auto;
  }
}
