body {
	margin: 0;
	font-family: 'Google Sans', Roboto, Arial, sans-serif;
	background-color: #121212;
	color: #e0e0e0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	overflow: hidden;
	user-select: none;
}

.logo {
	display: flex;
	flex-direction: column;
	color: #e0e0e0;
	font-size: 22px;
	align-items: center;
	font-family: 'Product Sans', Arial, sans-serif;
}

.logo img {
	width: 204px;
}

.logo span {
	font-size: 20px;
	color: #666;
}

h1 {
	font-size: 2.75rem;
	font-weight: normal;
}

p {
	font-size: 1.125rem;
	color: #b0b0b0;
}

form#new {
	margin-bottom: 20px;
}

input[type='text'] {
	font-size: 16px;
	max-lines: 1;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #666;
	background-color: #333;
	color: #e0e0e0;
	padding: 10px 20px 10px 40px;
	background-position: 10px 8px;
	background-image: url('images/link.svg');
	background-repeat: no-repeat;
	user-select: text;
}

button {
	border: none;
	padding: 10px;
	font-size: 1em;
	cursor: pointer;
	border-radius: 3px;
	background-color: #444;
	color: #e0e0e0;
}

form#new button {
	color: white;
	background: #1773e8;
	align-items: center;
	display: inline-flex;
	justify-content: space-between;
}

form#new button img {
	margin-right: 10px;
}

#lobby {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#lobby form {
	display: flex;
	flex-direction: column;
}

#lobby button {
	margin-top: 10px;
}

form {
	text-align: center;
}