body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: black;
	color: white;
}

.form-container {
	padding: 2rem;
	border: 1px solid white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	label {
		margin-bottom: 1rem;
	}
}

p {
	margin-top: 1rem;
}

.moon-phases {
	width: 300px;
	height: 300px;
	position: relative;
	margin-bottom: 2rem;

	.phase {
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;

		&.active {
			opacity: 1;
		}
	}
}

#phase-name {
	margin-top: 2rem;
}
