html {
  box-sizing: border-box;
  font-family: helvetica, sans-serif;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  font-family: inherit;
}

* {
  margin: 0;
  padding: 0;
}



.color-primary-0 {
    color: #2A2E3F
}
/* Main Primary color */
.color-primary-1 {
    color: #767989
}


.center {
  width: 98%;
  max-width: 730px;
  text-align: center;
}
body {
  background-color: #2A2E3F;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 30px;
  flex-direction: column;

}
img {
  aspect-ratio: auto;
  height: auto;
  max-width: 100%
}
a:link {
  color: #6666ff;
}

/* visited link */
a:visited {
  color: hotpink;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: lightgreen;
}

.content {
  margin-bottom: 51px;
}
pre {
  font-family: monospace;
}
.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}
.topnav a {
  float: left;
  display: block;
  background-color: #333;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #6666ff;
  color: white;
}