html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body[class]{
    max-width: 960px;
    min-height: 100vh;
    margin: auto;
    background: radial-gradient(circle at top left, #663399, rebeccapurple);
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    line-height: 1.25;
}

nav > ul > li > a{
    background-color: transparent;
    color: #ffeb3b;
    backdrop-filter: blur(10px);
    text-decoration: none;
    opacity: .8;
}
a:hover{
    opacity: 1;
}


nav {
    padding: .5rem;
}
nav > ul {
    display: flex;
    justify-content: end;
    gap: 1rem;
    list-style: none;
    color: #d5d5d5;
}
nav > ul > li {
    font-size: 2rem;
}

.tags {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

button.chip {

  padding: 0.4em 0.8em;
  margin: 0.2em;
  font-size: 0.7rem;
  font-weight: 400;
  border: none;
  border-radius: 999px; /* pill shape */
  background-color: #e0e0e0;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button.chip:hover {
  background-color: #d5d5d5;
}

button.chip:active {
  background-color: #c0c0c0;
}

.card-container .card-blog .title a {
    color: #ffeb3b;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: .8;
}

.card-container .card-blog .title a:hover {
    opacity: 1;
}