aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.module.css
blob: 939f480018efaf974ebf46e7afc436d56f21d189 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.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;
}

.auth button {
	padding: 5px;
	margin: 5px;
	font-family: "Atkinson Hyperlegible";
	font-size: 16px;
	border: none;
	outline: none;
	border-radius: 5px;
	background-color: var(--neon-green);
}

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