html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Outfit', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(47, 88%, 63%);
}

.container{
  max-width: 375px;
  width: 90%;
  background-color: white;
  border-radius: 20px;
  padding: 1rem;
  box-sizing: border-box;
  text-align:left;
  box-shadow: 8px 8px 1px rgba(0, 0, 0, 0.9);
  border: 2px solid black;

}

.cover{
    width:100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 25px;
}


.tag{
    background-color: hsl(47, 88%, 63%);
    color:hsl(0, 0%, 7%);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 800;
    font-family: "Figtree", sans-serif;
}
.date{
    display: flex;
    padding-left: 4px;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    color:hsl(0, 0%, 7%)
}

.title{
    font-family: "Figtree",sans-serif;
    font-weight: 800;
    padding-left: 3px;
}

.title:hover{
    color: hsl(47, 88%, 63%);
    cursor: pointer;
}

.description{
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    color: hsl(0, 0%, 42%);
}

.account{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top:12px;
}

.pfp{
    width: 40px;
    height:auto;
    padding-right: 15px;
}

.name{
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
}