* {
  padding: 0;
  margin: 0;
}
body {
  background-color: #f5d04e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.card {
  background-color: white;
  width: 350px;
  border-radius: 15px;
  padding: 20px;
  box-shadow:
    rgba(0, 0, 0) 5px 5px,
    rgba(0, 0, 0) 10px 10px;
}
.image {
  text-align: center;
}
.show-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}
.tag {
  background-color: #f2cd51;
  width: 25%;
  text-align: center;
  margin-bottom: 12px;
  padding: 5px;
  border-radius: 5px;
}
.date {
  margin: 14px 0;
}
.title {
  padding: 10px 0;
}
.description {
  max-width: 100%;
  color: gray;
  line-height: 24px;
  padding: 10px 0;
}
.profile {
  display: flex;
  align-items: center;
  margin: 9px 0;
}
.user-profile {
  border-radius: 50%;
  width: 10%;
}
.user-name {
  padding-left: 15px;
}

@media screen and (max-width: 450px) {
  .card {
    width: 80%;
  }
  .tag {
    width: 35%;
  }
}
