* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: hsl(47, 88%, 63%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.header {
  height: auto;
  background-color: white;
  width: 80%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: start;
  border-radius: 10px;
  box-shadow: 10px 8px 0px 6px rgba(0, 0, 0, 0.92);
  font-family: "Figtree", sans-serif;
}
.header img {
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
}
.btn {
  margin-bottom: 15px;
}
.btn button {
  padding: 5px 20px;
  background-color: hsl(47, 88%, 63%);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 15px;
}
.header p {
  margin-bottom: 20px;
  color: hsl(0, 0%, 42%);
}
.texte {
  text-align: start;
}
.texte h1 {
  margin-bottom: 15px;
  color: hsl(0, 0%, 7%);
  font-size: 25px;
}
.texte h1:hover {
  color: hsl(47, 88%, 63%);
}
.texte p {
  color: hsl(0, 0%, 42%);
  font-size: 18px;
}
.avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.avatar p {
  color: hsl(0, 0%, 7%);
  font-weight: bold;
  font-size: 20px;
}
.avatar img {
  width: 50px;
}
@media screen and (max-width: 425px) {
  .header {
    width: 100%;
    padding: 15px;
  }

  .btn button {
    font-size: 14px;
    padding: 4px 15px;
  }

  .texte p,
  .avatar p {
    font-size: 16px;
  }
  .texte h1 {
    font-size: 20px;
  }
}
