@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  column-rule-color: cornsilk;
  font-family: "Open Sans", sans-serif;
}

/* Link defaults  */
a {
  display: block;
  text-decoration: none;
  color: black;
}

/* Images */
img,
svg,
video,
figure,
figcaption,
picture {
  display: block;
  border-radius: 8px;
  max-width: 100%;
  block-size: auto;
  margin: 0;
}

section {
  padding: 2rem;
}

.container {
  max-width: 80em;
  margin-inline: auto;
  padding-inline: 3rem;
}

.site-header {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: left;
}

.site-header span {
  text-transform: uppercase;
  color: #555555;
}

.site-header > .container {
  max-width: 70em;
}

.hero {
  background-image: url(../bg.jpg);
  object-fit: center;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  gap: 5em;
  align-items: center;
  container-type: inline-size;

  @container (min-width: 500px) {
    flex-flow: wrap;
  }
}
.hero__articles {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  align-items: center;
}

.post__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post__title span {
  color: #f5f5f5;
}


.fact {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.fact__title {
  flex-direction: column;
}
.fact__pre {
  width: 30%;
}
.fact__title span {
  font-size: 3rem;
}