html {
  font-size: 22px;
}

.logo-small-link {
  position: absolute;
  top: 18px;
  left: 32px;
  z-index: 20;
  display: block;
}

.logo-small {
  width: 128px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
  transition: filter 0.2s;
}

.logo-small-link:hover .logo-small {
  filter: brightness(0.8) drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.blog-nav {
  position: absolute;
  top: 32px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-icon,
.blog-icon,
.contact-icon {
  width: 90px;
  height: auto;
  display: block;
  transition: filter 0.2s;
}

.contact-icon {
  width: 90px;
  height: auto;
  display: block;
  transition: filter 0.2s;
}

.contact-icon:hover {
  filter: brightness(0.8);
}

.nav-icon:hover,
.blog-icon:hover {
  filter: brightness(0.8);
}

@font-face {
  font-family: 'Smythe';
  src: url('/fonts/Smythe-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background: #fff;
  font-family: 'Smythe', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 1.45;
}

.container {
  max-width: 700px;
  margin: 80px auto;
  text-align: left;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* Ensure images never exceed their container's width */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Decrease font size for code tags by 20% */
code {
  font-size: 0.8em;
}

.long-description {
  text-align: justify;
  margin-top: 1.25em;
}

.mailing-list {
  margin-top: 2.5em;
  padding: 1em 1.5em;
  background: #f8f8f8;
  border-radius: 12px;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  box-sizing: border-box;
}

.mailing-list h2 {
  font-size: 1.5em;
  margin: 0;
  font-family: 'Smythe', Arial, sans-serif;
}

.mailing-list input[type="email"] {
  border: 1px solid #bbb;
  border-radius: 4px;
}

.mailing-list input[type="submit"] {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.mailing-list input[type="submit"]:hover {
  background: #444;
}

.logo {
  max-width: 800px;
  margin-bottom: 32px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: #222;
}

.long-description {
  font-size: 1.25em;
  line-height: 1.5;
}

.description {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .homepage .logo-small {
    display: none;
  }
}


