.fixed-header {
    position: sticky;
    top: 0;
    background-color: paleturquoise;
}

body>header {
    padding-block: 0;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

header>div.container {
    display: flex;
    align-items: center;
    justify-content: space-between;;
}

header>nav {
    display: flex;
}

footer>em {
    font-size: 0.7rem;
}

.social-bluesky {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: color 0.2s ease;
  color: black;
}

nav > a:hover {
    font-weight: bold;
    text-decoration: none;
}

a:hover .social-bluesky {
  color: #1185FE;
}