:root {
	--header: hsl(91, 40%, 55%);
	--backgroundColor: hsl(28, 30%, 94%);
	--darkBackgroundColor: hsl(28, 30%, 88%);
	--text: rgba(0,0,0,0.85);
	--noteText: hsl(28, 20%, 25%);
	--noteBackground: hsl(28, 30%, 90%);
	--noteBorder: hsl(28, 15%, 68%);

	--color1: hsl(241, 50%, 52%);
	--color2: hsl(196, 77%, 60%);
	--color3: hsl(0, 90%, 62%);

	--menu: hsl(210, 75%, 92%);

	--linkBorder: hsla(241, 50%, 52%, 0.5);
	--linkBackground: hsla(241, 50%, 52%, 0.05)
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 200;
	src: url('/style/webfonts/poppins-v24-latin-200.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('/style/webfonts/poppins-v24-latin-regular.woff2') format('woff2'), url('/style/webfonts/poppins-v24-latin-regular.woff') format('woff');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('/style/webfonts/poppins-v24-latin-700.woff2') format('woff2'), url('/style/webfonts/poppins-v24-latin-700.woff') format('woff');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 900;
	src: url('/style/webfonts/poppins-v24-latin-900.woff2') format('woff2'), url('/style/webfonts/poppins-v24-latin-900.woff') format('woff');
}
* {
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	border: none;
}
html {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--text);
	background-color: white;
}
h1, h2, h3 {
	margin: 2em 0 1em;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	font-weight: 700;
}
h1 {
	font-size: 3em;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
}
h1 span {
	display: block;
	font-size: 1.2rem;
	line-height: 1em;
}
p {
	margin: 1em 0;
	line-height: 1.7em;
}
a {
	color: inherit;
}
ul, ol {
	margin: 1em 0;
}
li {
	list-style: none;
	margin: 0.5em 0;
	line-height: 1.7em;
	display: flex;
}
li:before {
	content: "\2B24";
	margin-right: 1em;
	color: var(--color1);
}
hr {
	border: 1px solid;
	margin: 2em 0;
}

header {
	background-color: var(--header);
	display: flex;
	justify-content: center;
	padding: 1em;
	gap: 1.5em;
}
header > * {
	font-size: 14px;
	font-weight: 700;
	background-color: white;
	color: var(--header);
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 0.5em;
}
main {
	padding: 16px;
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
}
main .logo {
	display: block;
	margin: 20px auto;
	width: 100%;
	max-width: 300px;
}
main p {
	margin: 1em 0;
}
main p.link {
	padding: 0.5em 1em 0.5em 2.5em;
	background-image: url(link.svg);
	background-repeat: no-repeat;
	background-position: 0.5em center;
	border: 1px solid var(--linkBorder);
	border-radius: 1em;
	background-color: var(--linkBackground);
}
main button {
	background-color: var(--color1);
	color: white;
	padding: 1em 1.5em;
	border-radius: 0.5em;
	cursor: pointer;
}
footer {
	padding-bottom: 3em;
}
