* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: hsl(0, 0%, 8%);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-height: 100%;
}

img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.container {
  background-color: hsl(0, 0%, 12%);
  max-width: 400px;
  width: 100%;
  color: #fff;
  padding: 24px;
  margin-top: 24px;
  border-radius: 10px;
}
p {
  color: #fff;
  font-size: 14px;
  align-items: center;
  justify-content: center;
}
span {
  color: hsl(75, 94%, 57%);
  margin: 0.5rem 0 1rem;
  font-size: 14px;
}
section {
  display: grid;
  gap: 10px;
  margin-top: 2rem;
}

button {
  background-color: hsl(0, 0%, 18%);
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  outline: none;
}

button:hover {
  background-color: hsl(75, 94%, 57%);
}
