body {
    color: #333;
    margin: 40px auto;
    max-width: 660px;
    line-height: 1.6em;
    font-size: 18px;
    padding: 0;
    font-family: 'Noto Sans Mono', monospace;
}

h1 {
    margin-bottom: 0px;
}

.hr-with-text {
  text-align: center;
  position: relative;
  margin: 20px 0;
}

.hr-with-text hr {
  border: 0;
  border-top: 2.5px solid #666; /* Customize the line */
  margin: 10px 0;
}

.hr-with-text span {
  position: absolute;
  top: -12px; /* Adjust vertical position */
  left: 50%;
  transform: translateX(-50%);
  background-color: white; /* Match the background to hide text overlap */
  padding: 0 10px;  /* Add padding to create space around the text */
  color: #333; /* Text color */
  /* font-weight: bold; */
}

a:link,
a:visited {
	color:blue;
	text-decoration:none;
	transition:.618s ease-out
}
a:hover {
	color:#FF1203;
	text-decoration:none;
	text-shadow: 0px 0px 5px magenta;
	transition:0s
}
