@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(47, 88%, 63%);
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Figtree, sans-serif;
}

.content {
  background: hsl(0, 0%, 100%);
  padding: 10px;
  border-radius: 10px;
  text-align: left;
  max-width: 300px;
  /* box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2); */
  box-shadow: 5px 5px 0px hsl(0, 0%, 7%);
}

.image {
  width: 100%;
  border-radius: 10px;
}

.label {
  background-color: hsl(47, 88%, 63%);
  color: black;
  display: inline-block;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 15px;
}

h2 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: hsl(0, 0%, 42%);
  margin: 5px 0;
}

/* Profile section */
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

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