.websiteHeader {
	top: 0;
	height: 52px;
	width: 100%;
	position: fixed;
	background: var(--backgroundaccent);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: calc(var(--normalgap) * 2);
	padding: 6px var(--normalgap);
	box-sizing: border-box;
	align-items: center;
	z-index: 101;
}
.websiteHeaderMenu {
	display: flex;
	gap: calc(var(--normalgap) / 2);
	height: 100%;
}
.websiteHeaderBtn img {
	height: 50%;
	width: auto;
}
.websiteHeaderBtn {
	background: rgba(0, 0, 0, 0);
	padding: 4px;
	box-sizing: border-box;
	border-radius: 20%;
	height: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
}
.websiteHeaderBtn:hover {
	background: var(--backgroundaccenthover);
	transition: 0.2s;
}
.websiteHeaderClose {
	transition: 0.2s;
}
.websiteHeaderClose:hover {
	background: var(--accent);
	transition: 0.2s;
}

.inputcontainer {
	height: 100%;
	flex-grow: 1;
	max-width: 800px;
}
.input {
	width: 100%;
	padding: 0 60px;
	border: none;
	outline: none;
	color: var(--color);
	font-family: "Ubuntu", arial;
	transition: 0.2s;
	box-sizing: border-box;
	padding-block: 0.7em;
	border-bottom: var(--border-height) solid var(--border-before-color);
	
	background: var(--backgroundlightdifference);
	border-radius: 8px;
	font-size: var(--minitextsize);
	height: 100%;
	display: flex;
	align-items: center;
}
.input:hover {
	background: var(--backgroundlightdifference);
	transition: 0.2s;
}
.input:focus {
	background: var(--backgroundlightdifference);
	transition: 0.2s;
	border-radius: 30px 30px 0 0;
	outline: none;
}
.searchSymbol {
	position: absolute;
	height: var(--minitextsize);
	width: auto;
	top: 50%;
	left: 30px;
	pointer-events: none;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.input-border {
	position: absolute;
	background: var(--border-after-color);
	width: 0%;
	height: 2px;
	bottom: 0;
	left: 0;
	transition: width 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.input:focus + .input-border {
	width: 100%;
}
.input-border-alt {
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--backgroundlightdifference) 100%);
	transition: width 0.4s cubic-bezier(0.42, 0, 0.58, 1.00);
	z-index: 2;
}
.input-alt:focus + .input-border-alt {
	width: 100%;
}
.input-content {
	display: none;
	flex-direction: column;
	position: absolute;
	width: 100%;
	height: auto;
	background: var(--backgroundlightdifference);
	border-radius: 0 0 30px 30px;
	z-index: 1;
	padding: var(--normalgap) 60px;
	box-sizing: border-box;
	gap: calc(var(--normalgap) / 2);
	font-size: var(--minitextsize);
}
.input-content a {
	color: var(--color);
	text-decoration: none;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s;
}
.input-content a:hover {
	color: var(--backgroundaccenthover);
	transition: 0.2s;
}

body {
    padding: 0;
    margin: 8vh 0 0 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.contentSheet {
    text-align: justify;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contentSheet p {
	color: var(--coloraccent);
}
.page {
    width: 100%;
}
@media (max-aspect-ratio: 1/1) {
	html {
		--textsize: 28px;
	}
	.websiteHeader {
		height: 8vh;
		font-size: var(--hugeheadersize);
		padding: 1vh var(--normalgap);
	}
	.websiteDirectionArrow {
		display: none;
	}
	.websiteHeaderBtn img {
		height: 50%;
	}
	body {
		margin: 8vh 0 0 0;
	}
	.searchSymbol {
		display: none;
	}
	.websiteHeaderBtn {
		font-size: 3.5vh;
		font-weight: normal;
	}
	.input {
		border-radius: 4vh;
		font-size: 2vh;
	}
	.input:focus {
		height: 100%;
	}
	.input-content {
		font-size: 2vh;
		width: 100%;
		margin-left: 0;
		position: fixed;
		top: calc(8vh - 3px);
		left: 0;
		gap: 2vh;
		padding-left: 25vw;
	}
	.input-border {
		position: fixed;
		left: 0;
		top: calc(8vh - 6px);
	}
	.input:focus + .input-border {
		width: 100vw;
	}
}