body {
  background-color: #666666;
  padding: 45px 0;
  color: black;
}
.avatar {
  width: 250px;
  height: 250px;
  clip-path: circle(125px at 50% 50%);
}
h1 {
  color: rgb(230, 149, 149);
  font-family: system-ui;
  width: 250px;
}
h2 {
  color: rgb(230, 149, 149);
  font-family: system-ui;
  width: 200px;
}
h3 {
  color: rgb(230, 149, 149);
  font-family: system-ui;
  border: 0;
  width: 300px;
}
.button {
  margin-bottom: 20px;
  background-color: white;
  border: 0;
  width: 300px;
  padding: 15px 0 15px 0;
  border-radius: 100px;
  font-family: "Roboto Condensed", cursive;
  font-size: 15px;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  -webkit-box-shadow: 0px 11px 22px -9px rgb(230, 149, 149);
  box-shadow: 0px 11px 22px -9px rgb(230, 149, 149);
  cursor: pointer;
}
.button:hover {
  color: rgb(230, 149, 149);
  background-color: gray;
}