@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}
main {
  background: hsl(47, 88%, 63%);
}
.blog_card_container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.blog_card_item {
  border: 2px solid black;
  border-radius: 15px;
  background: white;
  padding: 1.5rem;
  text-align: start;
  max-width: 50%;
  width: 335px;

  box-shadow: 7px 7px 0px 0px;
}
.blog_author {
  position: relative;
}
.bg_yellow {
  display: inline-block;
  background: hsl(47, 88%, 63%);
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.border_radius >img {
    border-radius: 15px;
}
.blog_card_item > div {
  margin: 10px 0px;
}
.blog_author > h5 {
  display: inline-block;
  position: absolute;
  left: 15%;
  top: 25%;
}
a {
  color: black;
  text-decoration: none;
}
a:hover{
    color: hsl(47, 88%, 63%);
}
.bg_yellow > h4 {
  padding: 0px 10px;
}
@media only screen and (max-width: 700px) {
    .mobile_view{
        display: flex;
        justify-content: center;
        overflow: hidden;
        border-radius: 15px;
    }
}