body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
  padding: 2rem;
  text-align: center;
}

input[type="text"] {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 300px;
  background-color: #1e1e1e;
  color: #ffffff;
}

button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #03a9f4;
  color: white;
  margin-left: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #0288d1;
}

.container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.portrait-block {
  text-align: center;
}

.portrait-block img {
  border-radius: 10px;
  border: 2px solid #333;
  max-width: 256px;
}
