* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 20px;
  padding: 0;
}

div {
  width: 70%;
  margin: auto;
}

p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1;
  /* line-height: 1.2; */
  color: black;
  -webkit-text-stroke: 0.5px;
}

/* unvisited link */
a:link {
  color: black;
  text-decoration: none;
  border-bottom: 2px black solid;
}

/* visited link */
a:visited {
  color: black;
  text-decoration: none;
  border-bottom: 2px black solid;
}

/* mouse over link */
a:hover {
  color: black;
  text-decoration: none;
  border-bottom: 2px black dotted;
}

/* selected link */
a:active {
  color: black;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 800px) {
  p,
  div {
    width: 100%;
  }

  img {
    width: 100%;
    height: auto;
  }
}
