aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.module.css
blob: b59422940b11611b9c192a59e376159ce3294081 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.welcomeContainer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 75vh;
	max-width: 500px;
	margin: 0px auto;
	text-align: center;
}

.welcomeContainer p {
	color: black;
	font-family: "Quicksand";
	font-size: 20px;
}

@media (prefers-color-scheme: dark) {
	.welcomeContainer p {
		color: white;
	}
}