@font-face {
	font-family: "Poppins";
	font-style: italic;
	font-weight: 300;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm21llEA.ttf) format("truetype");
}
@font-face {
	font-family: "Poppins";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrJJLedw.ttf) format("truetype");
}
@font-face {
	font-family: "Poppins";
	font-style: italic;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmr19lEA.ttf) format("truetype");
}
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8V1s.ttf) format("truetype");
}
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrFJA.ttf) format("truetype");
}
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6V1s.ttf) format("truetype");
}

html {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	height: 100%;
}
*,
*::before,
*::after {
	overflow-wrap: break-word;
	font-weight: 300;
	box-sizing: inherit;
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
	line-height: 1.5;
	list-style-type: none;
	text-decoration: none;
}
body {
	font-family: "poppins", sans-serif;
	font-size: 16px;
	user-select: none;
	-drag: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex: 1 1 auto;
	padding: 30px 50px;
}
form {
	width: 100%;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, auto);
}
form input,
form select,
form textarea {
	min-width: 0;
	width: 100%;
}
form textarea {
	grid-column: 1 / -1;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
picture,
video,
canvas,
svg {
	max-width: 100%;
}
p,
pre,
li {
	display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}
h1 {
	font-size: 2rem;
	margin: 14px 0;
}

h2 {
	font-size: 1.75rem;
	margin: 12px 0;
}

h3 {
	font-size: 1.45rem;
	margin: 10px 0;
}
h4 {
	font-size: 1.1rem;
	margin: 8px 0;
}
h5 {
	font-size: 0.9rem;
	margin: 6px 0;
}
h6 {
	font-size: 0.7rem;
	margin: 4px 0;
}
span {
	font: inherit;
}
.hidden {
	display: none;
}
.iconLarge {
	font-size: 140%;
}
.center {
	justify-self: center;
	align-self: center;
	text-align: center;
}
.right {
	justify-self: end;
	align-self: start;
	text-align: right;
}
.left {
	justify-self: start;
	align-self: start;
	text-align: left;
}

input,
select,
textarea,
button {
	border-radius: 7px;
}
input,
button,
textarea,
select {
	font: inherit;
	resize: none;
	padding: 4px 12px;
	outline: none;
	background: rgb(128, 128, 128, 12%);
	border: none;
	overflow-y: hidden;
}
button,
input[type="submit"] {
	padding: 4px 9px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
button:hover,
input[type="submit"]:hover {
	background: rgb(13 136 211 / 30%);
}
button:active,
input[type="submit"]:active {
	background: rgb(13 136 211 / 70%);
}
input:focus,
select:focus,
textarea:focus {
	background: rgb(13 136 211 / 30%);
}

textarea {
	min-height: 340px;
	overflow-y: auto;
}

button.icon,
input.icon {
	font-size: 110%;
}

body.light {
	background: rgb(238, 238, 241);
	color: rgb(13, 13, 13);
}
body.dark {
	background: rgb(13, 13, 13);
	color: rgb(238, 238, 241);
}

.dark strong {
	background: rgb(35 125 216/30%);
}
.light strong {
	background: rgb(35 125 216/20%);
}
copyright {
	font-size: 80%;
	padding: 12px 0;
	text-align: center;
}
