.container {
	position: absolute;
	left: 0px;
	top: 0px;

	width: 100%;
	height: 100vh;
	padding: 10vw;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.logo {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 1em;
	color: var(--color-100);
	fill: var(--color-100);
}
.logo svg {
	height: 100%;
	width: 100%;
}
.logo div {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	font-weight: 100;
	font-size: 4vw;
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
}
.logo div b {
	font-weight: normal;
	color: rgba(255, 255, 255, 1);
}

form {
	display: flex;
	flex-direction: column;
}

select {
	appearance: none;
	display: block;
	padding: 1em;
	margin-top: 2em;
	font-size: 1.25em;
	border: 0px;
	color: var(--color-100);
	background-color: black;
	font-family: 'Dharma';
}
button {
	margin-top: 2em;
	border: 0px;
	background-color: var(--color-100);
	border: 1px solid var(--color-100);
	color: black;
	display: block;
	padding: 1em;
	font-size: 1em;
	font-family: 'Dharma';
	cursor: pointer;
	transition: all 0.25s linear;
}
button:hover {
	border: 1px solid var(--color-100);
	background-color: var(--color-50);
	color: white;
}
