@font-face {
  font-family: 'Gluten';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(Gluten.ttf);
}

@font-face {
  font-family: 'ShortStack';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(ShortStack.ttf);
}

nav {
    border-radius: 12px;
    background-color: #222;
    padding: 10px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    list-style: '⭐ ';
}

a {
    color: #eee;
}

h1, h2, h3 {
    font-family: Gluten, sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

body {
    color: #eee;
    background-color: #111;
    font-family: ShortStack, sans-serif;
    line-height: 1.6;
    font-size: 18px;
    margin: 40px auto;
    max-width: 768px;
    padding: 0 20px;
    text-wrap: stable;
}

hgroup {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

hgroup > * {
    margin-bottom: 0;
}

hgroup > small {
    color: #999;
}

strong, b {
    font-family: Gluten, sans-serif;
}

#title {
    text-align: center;
}

#blogs, #updates {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 20px;
    gap: 20px;
}

#blogs li, #updates li {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border-radius: 12px;
    background-color: #222;
    padding: 10px;
    width: 100%;
}

li p {
    margin: 0;
}