:root {
  --primary: #f4d04e;
  --gray-950: #111111;
  --gray-500: #6b6b6b;
  --white: #ffffff;
}

html {
  background-color: var(--primary);
}

@font-face {
  font-family: "Figtree-Bold";
  src: url("/assets/fonts/static/Figtree-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/static/Figtree-Medium.ttf") format("truetype");
}

.font-headline {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0px;
  font-family: "Figtree-Bold", sans-serif;
  margin: 0;
}

.font-tag {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
  font-family: "Figtree-Bold", sans-serif;
}

.font-date {
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  font-size: 14px;
  font-family: "Figtree", sans-serif;
}

.font-text {
  margin: 0;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  font-size: 16px;
  color: var(--gray-500);
  font-family: "Figtree", sans-serif;
}

body {
  height: 100vh;
  padding: 0;
  margin: 0;
}

.container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #000000;
  width: 100%;
  max-width: 336px;
  background-color: var(--white);
  margin: auto;
  padding: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  padding: 4px 12px;
  background-color: var(--primary);
  border-radius: 4px;
  width: fit-content;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.profile-picture {
  width: 32px;
}

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