#blogpost {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  gap: 2rem;
  font-family: "Switzer-Variable", sans-serif;
  /* margin: 0 auto; */
}

#blogpost>header {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(24, 143, 210, 0.03);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem 2rem;
  gap: 0.25rem;
}

#blogpost>header>h2 {
  text-align: center;
}

#blogpost>header>p {
  color: rgba(0, 0, 0, 0.8);
}

#blogpost>header>p>span {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

#blogpost>.content {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}

@media screen and (max-width: 1100px) {
  #blogpost {
    max-width: 90%;
  }
}
