// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900
// <width>: Use a value from 50 to 200

.inconsolata-<uniquifier> {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" <width>;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1em;
	line-height: 1.5em;
	font-weight: inherit;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

body {
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
	font-size: 20px;
	color: #000;
	min-height: 100vh;
	scroll-behavior: smooth;
	text-align: center;
	background-color: #ebf1f3;
	padding: 4em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 640px) {
	body {
		font-size: 20px;
		padding: 4em 1em;
	}
}

h1 {
	font-size: 25px;
	font-weight: 700;
	color: #21201f;
	font-variation-settings:
		"wdth" 87.5;
	transform: rotate(-1deg);
	margin-bottom: 1.25em;
}

.banner,
.info {
	display: flex;
	justify-content: center;
	margin-bottom: 2em;
}

.banner p,
.info p {
	background-color: #21201f;
	color: #fff;
	font-weight: 500;
	font-variation-settings:
		"wdth" 87.5;
	max-width: 550px;
	padding: 1em 1.5em;
	transform: rotate(1deg);
}

.info p {
	transform: rotate(-1deg);
}

.banner p a,
.info p a {
	text-decoration: underline;
}

.banner p a:hover,
.info p a:hover,
.banner p a:focus,
.info p a:focus {
	opacity: 0.75;
}

.banner p a:active,
.info p a:active {
	opacity: 0.5;
}
