* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

body {
  height: 100vh;
  background-color: hsl(0, 0%, 8%);
  padding: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.container {
  max-width: 400px;
  background-color: hsl(0, 0%, 12%);
  color: hsl(0, 0%, 100%);
  border: none;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container img {
  width: 100px;
  border-radius: 50%;
  margin: 15px 0px;
}
h4 {
  color: hsl(75, 94%, 57%);
  margin-top: 8px;
}
p {
  font-size: clamp(14px, 1vw, 2rem);
  text-align: center;
}

.buttons {
  list-style-type: none;
  width: 100%;

}

.buttons button {
  width: 100%;
  margin: 10px 0px;
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}
.buttons button:hover {
  background-color: hsl(75, 94%, 57%);
}

.attribution {
  color: hsl(0, 0%, 100%);
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
