@import "tailwindcss";

* {
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}


html,body{
  overflow-x: hidden;
}


/* DATE PUBLISHED STYLES */
.date-published {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 2rem 0 0.5rem auto;
  padding: 1rem 0;
  max-width: 64rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .date-published {
    justify-content: flex-start;
    margin-left: 3px;
    padding: 1.5rem 0;
  }
}

.date-published-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
  white-space: nowrap;
}

.date-published-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  color: rgb(107, 114, 128);
  flex-shrink: 0;
}

.date-published-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
  white-space: nowrap;
}