* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	height: 100vh;
}

.container {
	width: 80%;
	max-width: 400px;
}

.options {
	display: flex;
	flex-direction: row;
	gap: 2.3em;
	font-size: 1rem;
	margin: 0 10px 0 15px;
}

#head {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 2.5rem;
}

select {
	font-size: 0.8rem;
	padding: 5px;
	border: #69697c 1px solid;
}

select:focus {
	border-color: #69697c;
	box-shadow: 0 0 5px #69697c;
}

button {
	width: 100%;
	height: 50px;
	background-color: #27272b;
	color: #fff;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0 10px;
	border-radius: 2.5rem;
}

.qr {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 5px;
}

input {
	border: 2px solid gray;
	padding: 8px;
	border-radius: 4px;
	outline: none;
	font-size: 0.8rem;
	width: 100%;
	height: auto;
}

input:focus {
	border-color: #69697c;
	box-shadow: 0 0 5px #69697c;
}

#down:hover {
	cursor: pointer;
}

.head {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	margin-top: 50px;
}

.head a {
	position: fixed;
	left: 3rem;
	top: calc((60px / 2) + 50px);
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	width: 30px;
	height: 30px;
	background: #e0e7ff;
	border-radius: 50%;
	border: 1.5px solid transparent;
	text-decoration: none;
}
@media (max-width: 480px) {
	.head a {
		left: 0.5rem;
	}
}
