* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: 'Figtree', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(47, 88%, 63%)
}

.container {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 2%);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 300px;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.content-section {
  text-align: left;
  padding-top: 15px;
}

.content-section h2 {
  color: hsl(0, 0%, 7%);
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  background-color: hsl(47, 88%, 63%);
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  line-height: 0.5;
  font-weight: 800;
}

.content-section h1 {
  color: hsl(0, 0%, 7%);
  font-size: 20px;
  margin-bottom: 10px;
}
.content-section h1:hover {
  color: hsl(47, 88%, 63%);
  cursor: pointer;
}
.content-section h1:active {
  color: hsl(0, 0%, 7%);
}

.content-section p {
  color: hsl(0, 0%, 42%);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}

p.publish {
  color: hsl(0, 0%, 0%); 
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 700; 
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.author-info img {
  border-radius: 50%;
  margin-right: 10px;
  width: 30px;
  height: auto;
}
.author-info span {
  font-weight: bold;
  color: hsl(0, 0%, 7%)
}