body {
  background-color: hsl(0, 0%, 8%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

#container {
  width: 380px;
  height: 610px;
  align-items: center;
  border-radius: 20px;
  border-style: solid;
  border-color: hsl(0, 0%, 8%);
  margin-top: 200px;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 12%)
}

#avatar-container {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

img {
  width: 85px;
  border-radius: 80px;
  margin-top: 10px;
}

#text {
  width: 100%;
  text-align: center;
  Font-size: 14px;
  align-items: center;
}

h3 {
  color: hsl(75, 94%, 57%);
}

#items {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.button {
  border-radius: 10px;
  border-style: solid;
  border-color: hsl(0, 0%, 20%);
  background-color: hsl(0, 0%, 20%);
  width: 300px;
  height: 20px;
  margin-top: 10px;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-size: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
}

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