:root {
  --background-color: hsl(47, 88%, 63%);
  --card-color: hsl(0, 0%, 100%);
  --text-color-sm: hsl(0, 0%, 42%);
}
html {
  display: flex;
}
body {
  background-color: var(--background-color);
  height: 100vh;
  width: 100vh;
  font-family: figtree, sans-serif;
  font-size: 16px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  background-color: var(--card-color);
  align-items: center;
  justify-content: center;
  align-self: center;
  border-radius: 25px;
  max-width: min-content;
  padding: 20px;
  margin: auto;
  box-shadow: 12px 12px 0px black;
  border: 1px solid black;
}
div img {
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
div p {
  justify-content: center;
  align-items: center;
}
.card {
  justify-content: center;
  align-items: center;
  /* height: 100%; */
  /* width: auto; */
}
.card-header {
  font-weight: 800;
  font-size: x-large;
}
.card-date {
  max-width: fit-content;
  font-weight: 500;
}

.card-text-1 {
  background-color: var(--background-color);
  font-weight: bold;
  max-width: fit-content;
  padding: 5px;
  border-radius: 2px;
}
.card-info {
  color: var(--text-color-sm);
  font-weight: 500;
  padding: auto;
}
.user-avatar {
  max-width: 35px;
  max-height: 35px;
  float: left;
  margin-top: 5px;
}
.user-name {
  display: inline-block;
  font-weight: bold;
  padding: auto;
  margin: 13px;
}
.attribution {
  font-size: 11px;
  text-align: center;
  display: none;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
