body {
  background-color: black;
  color: white;
  width: 50%;
  margin: 0 auto;
  font-family: "Courier New", Courier, monospace;
}

header {
  display: flex;
  justify-content: center;
}

button {
  margin: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 5px;
  font-family: "Courier New", Courier, monospace;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background-color:#F6921E;
}

main {
  display: flex;
  justify-content: center;
}

figure {
  border: 2px solid white;
  border-radius: 5px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  background-color: white;
  background-position: center;
}