html {
    background: var(--backgroundstandard);
    display: flex;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    width: 100%;
    color: var(--color);
    font-size: var(--textsize);
    font-family: "Ubuntu", arial;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: calc(var(--textsize) * 1.4);
    --textcolor: rgb(228, 228, 228);
    --backgroundstandard: rgb(20, 20, 24);
    --backgroundaccent: rgb(52, 52, 56);
    --backgroundaccenthover: rgb(72, 72, 76);
    --backgroundlightdifference: rgb(24, 24, 28);
    --normalgap: 28px;
    --color: rgb(240, 240, 240);
    --coloraccent: rgb(152, 152, 152);
    --textsize: 20px;
    --subheadersize: 1.563rem;
    --headersize: 2.441rem;
    --hugeheadersize: 3.815rem;
    --minitextsize: 16px;
	--accent: rgb(180, 0, 252);
}
.startTop, .contentSheet h {
	font-size: var(--hugeheadersize);
	line-height: calc(var(--hugeheadersize));
	letter-spacing: -4%;
	font-weight: bold;
}
input, .tabs, .roundBtn, .input-content, .websiteHeaderContent, .websiteHeaderBtn:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.sectionHeading {
	font-weight: bold;
	text-align: left;
}
h {
	font-size: var(--headersize);
	line-height: calc(var(--headersize)*1.3);
	letter-spacing: -2%;
	text-align: left;
}
mark {
	color: var(--accent);
	background: none;
}
.decentmark {
	color: var(--color);
	text-decoration: underline;
    line-height: calc(var(--textsize) * 1.5);
}
.simpleText {
	width: clamp(650px, 50vw, 80vw);
	margin: 50px;
}
.headerContainer {
	position: fixed;
	top: 0;
	width: auto;
	padding: var(--normalgap);
	display: flex;
	flex-direction: row;
	gap: var(--normalgap);
}
.roundBtn {
	height: 48px;
	width: 48px;
	border-radius: 50%;
	background: var(--backgroundaccent);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.roundBtn:hover {
	outline: 2px solid var(--color);
	background-size: 130%;
}
.copyBtn {
	background-size: 52%;
	background-image: url(img/contact.png);
}
.copyBtn:hover {
	background-size: 52%;
	background-image: url(img/copy.png);
}
.tooltip {
	position: absolute;
	top: 90%;
	left: 25%;
	transform: translateX(-50%) rotateX(90deg);
	opacity: 0.6;
	transition: all 0.5s ease;
	background: var(--backgroundaccent);
	height: 0px;
	cursor: default;
	white-space: nowrap;
}
.copyBtn:hover .tooltip {
	opacity: 1;
	pointer-events: auto;
	background: var(--backgroundaccent);
	transform: translateX(-50%) rotateX(0deg);
}
body {
	padding: 0;
	margin: 0;
	min-height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--normalgap);
}

.cursor-dot {
	width: 7px;
	height: 7px;
	background: red;
	display: none;
}
.cursor-outline {
	width: 20px;
	height: 20px;
	background: rgba(200, 200, 200, 0.7);
	box-shadow: 0 0 20px rgba(200, 200, 200);
	transition: 0.2s;
}
.cursor-dot, .cursor-outline {
	position: fixed;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 200;
	pointer-events: none;
	cursor: none !important;
	display: none;
}
@media (max-aspect-ratio: 1/1) {
	html {
		--textsize: 28px;
	}
	.input {
		width: clamp(100px, 80vw, 90vw);
	}
	.input-content {
		gap: var(--normalgap);
	}
	.simpleText {
		font-size: var(--subheadersize);
		line-height: calc(var(--subheadersize)*1.4);
		text-align: justify;
	}
	.roundBtn {
		width: 10vw;
		height: 10vw;
	}
	.headerContainer {
		height: 10vw;
		justify-content: center;
		align-items: center;
		font-size: var(--subheadersize);
	}
}