.page--home {
	color: #464646;
	background: white;
}

#dialog {
	top: 0;
	left: 0;
	position: fixed;
	width: 100vw;
	height: 100vh;
	border: none;
	margin: 0;
	padding: 0;
	background-color: rgb(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 2%;
}
#dialog:not([open]) {
	display: none;
}

/* container */
#dialog > .dialog-wrap {
	background-color: white;
	max-width: 500px;
	max-height: 300px;
	padding: 1rem;
}
