body {
    background-color: #F4D04E;
}

.card {
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    box-shadow: 5px 5px 5px 5px black;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    
}
.card-title {
    display: inline-block;
  background: #F4D04E;
  border-radius: 4px;
  font-family: "arial-black";
  font-size: 12px;
  color: #000000;
  padding: 8px 12px;
  cursor: pointer; 
}

.card-date {
    font-family: "Figtree";
}

.card-text {
    font-size: 24px;
    color: hsl(0, 0%, 7%);
}

.card-paragraph {
    font-family: "Figtree";
    font-size: 14px;
    text-overflow: ellipsis;
    color: hsl(0, 0%, 42%);
}

.card-image {
    border-radius: 10px;
}

.author-image {
    height: 24px;
    width: 24px;
    margin-top: 20px;
    margin-right: 20px;
}

.author-name {
    font-family: "Figtree";
    font-weight: bold;
}

.card-text:hover {
    color: #F4D04E!important;
  }