@font-face {
	font-family: 'GT Standard L';
	src: url('fonts/GT-Standard-L-Standard-Regular-Trial.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'GT Standard L', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}

html,
body {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

/* Hide all scrollbars */
* {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
	display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

html,
body {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none; /* WebKit browsers */
}
body {
	overflow: hidden;
	background: #ffffff;
	position: relative;
}

body,
button {
	font-size: 17px;
}

.intro-sequence {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	z-index: 100;
	background: #ffffff;
	opacity: 0;
	transition: opacity 0.5s ease-in;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0;
}

/* change order */
.intro-sequence.text-done-animating .intro-text-container {
	order: 3;
}

.intro-text-container {
	height: 30px;
	line-height: 30px;
	position: relative;
}

.intro-text-container > * {
	height: 30px;
	line-height: 30px;
	display: inline-block;
	vertical-align: top;
}

.text-item {
	white-space: nowrap;
}

#bubbleSvg {
	display: block;
	width: 120px;
	height: 120px;
	z-index: 20;
	opacity: 1;
	margin-bottom: 20px;
	shape-rendering: geometricPrecision;
}

.sink {
	position: relative;
	width: 100%;
}

.intro-text-container,
.subscribe {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.intro-text-container {
	text-align: center;
	position: relative;
	right: 0;
}

.logo img {
	width: 30px;
	height: auto;
}

@keyframes blink {
	0%,
	49% {
		background-color: #000;
		color: #fff;
	}
	50%,
	100% {
		background-color: transparent;
		color: #000;
	}
}

@keyframes fadeInCanvas {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.logo {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	pointer-events: none;
	opacity: 0;
}

.subscribe {
	display: none;
	opacity: 0;
	flex-direction: column;
	z-index: 100000;
	transition: opacity 1s ease-in-out;
}

input::placeholder {
	color: #000;

	font-weight: 400;
}

button::placeholder {
	color: #000;

	font-weight: 400;
}

.email-input {
	text-align: center;
	border-radius: 0;
	color: #000;
	outline: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: text;
	width: auto;
	text-transform: uppercase;
	white-space: nowrap;
}

.caret-block {
	border: none;
	outline: none;
	background: transparent;
	color: #000;
	text-align: left;
	padding: 0;
	margin: 0;
	caret-color: auto;
	text-indent: 0; /* Prevent text indentation */
	display: flex;
}

/* Disable spellcheck styling */
.caret-block[spellcheck='false'] {
	-webkit-user-modify: read-write-plaintext-only;
}

.caret-block:empty:not(.user-clicked):before {
	content: attr(data-placeholder);
	color: #bcbcbc;
}

button {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-padding-start: 0;
	-webkit-padding-end: 0;
	-moz-padding-start: 0;
	-moz-padding-end: 0;
	padding-start: 0;
	padding-end: 0;
	color: #000000;
	background: #ffffff;
	outline: none;
	border: none;
	height: 30px;
	padding-left: 5px;
	padding-right: 5px;
}

.button-text {
	position: relative;
	bottom: 0;
}

button:hover {
}

.confirmation-message {
	color: #000;
	text-align: center;
	display: none;
}

.confirmation-message.show {
	display: block;
}

.email-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: row;
	gap: 5px;
	height: 30px;
}

#emailInput {
	border-bottom: 1px solid #bcbcbc;
	min-width: 50px;
	min-height: 30px;
	height: 30px;
}

#emailField {
	min-width: 41px;
	min-height: 30px;
	height: 30px;
	max-width: 250px;
	overflow: hidden;
	line-height: 30px;
	white-space: nowrap;
}

#emailInput:has(#emailField:not(:empty)) {
	border-bottom-color: transparent;
}

.typewriter-cursor {
	background-color: #fff;
	font-weight: bold;
	animation: blink-cursor 1s step-end infinite;
	display: inline-block;
	margin-left: 2px;
	width: 8px;
	height: 13px;
	position: relative;
	bottom: -1px;
	/* transform: translateX(-100%); */
	mix-blend-mode: difference;
}

#introSequence,
#infoSequence * {
	overflow: hidden;
}

@keyframes blink-cursor {
	0%,
	50% {
		opacity: 1;
	}
	51%,
	100% {
		opacity: 0;
	}
}

@media (max-width: 768px) {
}
