* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}
body {
  padding: 10px;
  background: #67e9bf;
}
.title {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 76px;
  color: #32579a;
  font-family: "Bigelow Rules";
  display: flex;
  flex-direction: column;
  align-items: center;
}
#characters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 10px;
  padding: 10px;
}
.character-card {
  display: flex;
  background: #74b89d;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 20px;
}
.character-card h2 {
  color: #4e3c34;
}

.character-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.bey {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
.input {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
  margin-bottom: 20px;
  padding: 5px;
}
input {
  border-radius: 10px;
  border: 0;
  height: 30px;
  width: 33%;
  outline: none;
}
