:root {
	--black: #000000;
	--blue: #00bfff;
	--grey: #dcdcdc;
	--darkgrey: #686868;
}

* {
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: var(--black);
	box-sizing: border-box;
}

body {
	font-family:
		'Manrope',
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
}

h1,
h2,
h3 {
	font-weight: 700;
}

p {
	font-weight: 400;
}

.body-left {
	position: relative;
	height: 1584px;
	width: 1224px;
	padding: 10px;
}

.body-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	position: relative;
	height: 1584px;
	width: 1224px;
	padding: 10px;
}

.container-border {
	border: 1px solid red;
}

.download-button {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--blue);
	border: none;
	border-radius: 8px;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.download-button:hover {
	opacity: 1;
}

.download-icon {
	color: white;
	font-size: 24px;
}

.tooltip {
	position: absolute;
	top: 6px;
	right: 56px;
	padding: 5px;
	background-color: black;
	color: white;
	text-align: center;
	opacity: 0;
	border-radius: 5px;
	z-index: 1;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.download-button:hover .tooltip {
	opacity: 1;
}
