:root {
  --accent: #3d74bd;
}

body {
  margin: auto;
  max-width: 600px;
  background-color: #ffffff;
  font-family: "print", serif;
  color: black;
  padding: 1em 6em 6em 6em;
}

/* set style for <768 */
@media screen and (max-width: 768px) {
  html {
    font-size: 1rem;
  }

  body {
    padding: 1.5em 1.5em 1.5em 1.5em;
  }
}

/* set style for >768 */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1rem;
  }

  body {
    padding: 1em 3em 3em 3em;
  }
}

h1 {
  text-transform: uppercase;
  line-height: 1.1em;
}

p {
  line-height: 1.4em;
  margin: 0px;
  text-align: justify;
}

h2+p::first-letter {
  float: left;
  font-size: 2.5rem;
  line-height: 1.1em;
  margin: 0 0em -0.4em -0.1em;
  padding: 0.1em;
  padding-top: 0px;
}

p+p {
  text-indent: 2.3em;
}

.code {
  margin: auto;
  max-width: 70%;
  padding: 1em;
}

.pubdate {
  line-height: 3em;
}

.homebtn {
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  background: var(--accent);
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  border-style: none;
}

.homebtn:hover {
  filter: brightness(125%);
  text-decoration: none;
  cursor: pointer;
}

ul {
  display: flex;
  gap: 1rem;
  list-style-type: none;
  padding-left: 0;
}

ul li:first-child {
margin-right: auto;
}