@font-face {
	font-family: TheEmirates;
	src: url("/fonts/regular.otf") format("opentype");
}

@font-face {
	font-family: TheEmirates;
	font-weight: bold;
	src: url("/fonts/bold.otf") format("opentype");
}

body {
	height: 100%;
	font-family: 'TheEmirates', sans-serif;
	overflow-x: hidden;
	size: 100%;
	background-image: url("/background.jpg");
	
	/* Full height */
	height: 100%;

	/* Center and scale the image nicely */
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

h1 {
	font-size: 4rem;
	font-weight: 300;
	color: white;
}

h2 {
	font-size: 3rem;
	font-weight: 500;
	transition: 0.3s ease;
	transform-origin: center left;
	color: white;
}

h2:hover {
	transform: scale(1.05);
}

h3 {
	margin-top: 0;
	font-size: 2.5rem;
}

h4 {
	margin: 0;
	font-size: 2rem;
	font-weight: lighter;
}

label {
	font-weight: bold;
}

button {
	all: unset;
	cursor: pointer;
}

form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

input,
select,
textarea {
	font-family: 'TheEmirates', sans-serif;
	font-size: 1rem;
	color: gray;
	padding: 0.75rem;
	border: solid;
	border-color: gray;
	border-width: 1px;
	border-radius: 8px;
}

textarea {
	height: 5rem;
}

::-webkit-scrollbar {
	width: 10px;
	margin: 0 10px;
}

::-webkit-scrollbar-track {
	background: none;
}

::-webkit-scrollbar-thumb {
	background-color: #333333;
	border-radius: 5px;
}

.header {
	padding: 2rem;
	position: absolute;
	height: 19vh;
}

.page {
	display: flex;
	justify-content: center;
	transition: 0.3s ease;
}

.content {
	width: 50vw;
}

.content {
	height: 98vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease;
}

.form {
	width: 50vw;
	background-color: rgba(0, 0, 0, 0.2);
	transition: 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-button {
	background-color: #333333;
	color: white;
	border-width: 1px;
	border-radius: 5px;
	padding: 0.5rem;
	width: fit-content;
	transition: 0.3s ease;
	transform-origin: left center;
}

.form-button:hover {
	transform: scale(1.1);
}

.card {
	overflow-y: scroll;
	width: 50%;
	height: 70vh;
	padding: 5rem;
	border-radius: 20px;
	background-color: white;
}

.main-text {
	width: 23rem;
}

.material-symbols-outlined {
	font-size: 2rem;
}

.question,
.details {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.education {
	display: flex;
}

.hidden {
	transform: translateX(100vw);
}

.center {
	transform: translateX(50%);
}

.hide {
	opacity: 0;
}