/* App */
a {
	color: white;
	text-decoration: none;

	-webkit-transition: opacity linear 0.5;

	-o-transition: opacity linear 0.5;

	transition: opacity linear 0.5;
}

a:hover {
	opacity: 0.7;
}

html,
body,
#app_main {
	width: 100%;
	height: 100%;
	inset: 0;
}

body {
	font-family: "Fragment Mono", monospace;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	font-size: 10px;
}

#app_main {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	color: white;

	overflow: hidden;
}

#app_logo {
	position: relative;
	display: block;
	width: 96;
	height: auto;

	z-index: 9;
}

#app_wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 32px;

	width: calc(100vw - 32px);
	max-width: 480px;

	height: auto;
	max-height: 480px;

	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	-webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(16.1px);
	-webkit-backdrop-filter: blur(16.1px);
	border: 1px solid rgba(255, 255, 255, 0.3);

	padding: 24px;

	z-index: 9;
}

#app_content {
	position: absolute;
	width: calc(100% + 32px);
	height: calc(100% + 32px);
	padding-top: 32px;
	padding-bottom: 32px;

	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	z-index: -1;
}

#app_job,
#app_contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2px;
}

.embla {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;

	pointer-events: none;
}

.embla__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
}

.embla__slide {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-width: 0;
	width: 100%;
	height: 100%;
}

.embla__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}