@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
	--accent: #ff004b;
	--background: #fffdfd;
}

* {
	margin: 0;
	box-sizing: border-box;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
	font-family: "Inter";
	text-decoration: none;
	color: #202020;
}

body {
	background-color: var(--background);
	display: flex;
	justify-content: center;
	align-items: center;
}

.document-title {
	color: var(--accent);
	font-size: 66px;
}

.document-line {
	width: 260px;
	height: 5px;
	border: none;
	background-color: var(--accent);
	border-radius: 5px;
	margin-bottom: 30px;
}

.document {
	margin-inline: 10%;
	margin-top: 5%;
}

ul {
	list-style: square;
}

a {
	text-decoration: underline;
	color: #97012e;
}
