@font-face {
  font-family: Figtree;
  src: url(./assets/fonts/Figtree-VariableFont_wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  font-family: Figtree;
}
body {
  background-color: rgb(244, 208, 78);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box {
  background-color: white;
  width: 300px;
  padding: 15px;
  border-radius: 15px;
  border: 2px solid black;
  box-shadow: 6px 5px 0px 0px rgba(18, 18, 18, 0.87);
}
.topImage {
  width: 100%;
  text-align: center;
  border-radius: 10px;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.content > *:nth-child(even) {
  margin: 15px 0;
}
.content h5 {
  background-color: rgb(244, 208, 78);
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 800;
  margin-top: 15px;
}
.date {
  font-size: 12px;
  font-weight: 500;
}
.text {
  color: rgb(107, 107, 107);
  font-size: 13px;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%;
}
.avatar img {
  width: 30px;
}
.avatar p {
  font-weight:bold;
  font-size: 11px;
}
