.startBox {
	width: 100%;
	display: flex;
	justify-content: center;
}
.startTop {
	height: 40%;
	align-items: end;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.startTop h {
	font-size: var(--hugeheadersize);
	line-height: 1;
	letter-spacing: -4%;
	text-align: left;
}
.startMid {
	align-items: center;
	position: relative;
}
.startBottom {
	height: 60%;
	gap: var(--normalgap);
	flex-direction: row;
}
.input {
	height: 52px;
	border-radius: calc(var(--textsize) * 1.5);
	width: clamp(200px, 584px, 90vw);
	padding: 0 60px;
	border: none;
	outline: none;
	background: var(--backgroundaccent);
	color: var(--color);
	font-size: var(--textsize);
	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);
}
.input:hover {
	background: var(--backgroundaccenthover);
	transition: 0.2s;
}
.input:focus {
	background: var(--backgroundlightdifference);
	transition: 0.2s;
	border-radius: 30px 30px 0 0;
	outline: none;
}
.searchSymbol {
	position: absolute;
	height: var(--textsize);
	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);
}
.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);
}
.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;
}
.tabs {
	background: var(--backgroundlightdifference);
	padding: 0 calc(var(--normalgap) / 2);
	display: flex;
	height: calc(var(--textsize) * 2.5);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 8px;
	text-decoration: none;
	color: var(--color);
}
.tabs:hover {
	outline: 2px solid var(--color);
	text-decoration: underline;
}
.tabs:active {
	text-decoration: none;
}
.importantLink {
	position: relative;
	overflow: hidden;
	z-index: 0;
	background: rgb(0, 0, 0);
}
.importantLink span {
	z-index: 2;
}
.headerHoverEffect {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.headerHoverEffect div {
	position: absolute;
	background: black;
	background: linear-gradient(
		90deg,
		red 0%,
		var(--accent) 40%,
		rgb(0, 255, 255) 100%
	);
	border-radius: 50%;
	width: 200%;
	aspect-ratio: 1 / 1;
	transition: 0.4s;
	filter: blur(16px);
	animation: rotateLinkBack infinite 3s linear;
	opacity: 0.4;
}
.importantLink:hover .headerHoverEffect div {
	width: 12rem;
	height: 12rem;
}
@keyframes rotateLinkBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media (max-aspect-ratio: 1/1) {
	.input {
		width: 80vw;
		height: calc(var(--headersize) * 2);
		border-radius: var(--headersize);
		font-size: var(--subheadersize);
		padding: 0 calc(var(--subheadersize) * 2);
	}
	.searchSymbol {
		height: var(--subheadersize);
		margin-left: calc(var(--subheadersize) * 0.5);
	}
	.input:focus {
		border-radius: var(--headersize) var(--headersize) 0 0;
	}
	.input-content {
		border-radius: 0 0 var(--headersize) var(--headersize);
		font-size: var(--subheadersize);
		gap: var(--subheadersize);
		padding: var(--subheadersize) calc(var(--subheadersize) * 2);
	}
	.startTop h {
		font-size: calc(var(--headersize) * 2);
	}
	.startBox {
		margin: var(--normalgap) 0;
	}
	.startTop {
		height: 35%;
	}
	.startMid {

	}
	.startBottom {
		height: 65%;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: start;
		gap: calc(var(--normalgap) * 2);
	}
	.tabs {
		font-size: var(--subheadersize);
		height: calc(var(--subheadersize) * 2.5);
		padding: 0 calc(var(--subheadersize) / 2);
		border-radius: var(--subheadersize);
		white-space: nowrap;
	}
}