@import url(https://fonts.bunny.net/css?family=pt-sans:400,400i,700,700i);

body {
    background-color: #efe3e3;
    font-family: 'PT Sans', sans-serif;
    color: #362e2e;
}

.container {
    max-width: 400px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #953434;
}

a:hover {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1px;
}

nav {
    display: flex;
    gap: 8px;
    cursor: default;
}

nav .items {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

nav .title {
    font-weight: bold;
    color: rgb(215, 11, 11);
}

nav a {
    text-decoration: none;
    border-bottom: 2px solid #ffffff00;
    color: inherit
}

nav a:hover {
    text-decoration: none;
    border-bottom: 2px solid rgb(215, 11, 11);
}

.post {
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.post a {
  grid-column: span 4 / span 4;
}

.post .date {
  grid-column-start: 5;
  text-align: right;
}

img {
    width: 100%;
}

pre {
    width: 100%;
    overflow: auto;
}

h1, h2, h3, h4, h5, h6 {margin: 0;}