* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
	background-color: black;
}

p {
	font-family: "Atkinson Hyperlegible Mono", sans-serif;
	color: white;
	margin-top: 1.5rem;
	line-height: 1.5;
}

#logo {
	width: 70px;
}

#signoff {
	text-align: center;
	color: pink;
}

a {
	color: inherit;
}

p a:hover {
	color: pink;
}

#main_container {
	max-width: 723px;
	margin: auto;
	padding: 33px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
}

::selection {
  background: pink;
  color: black;
}

.indivisible {
	white-space: nowrap;
}