aboutsummaryrefslogtreecommitdiff
path: root/src/app/globals.css
blob: e327d9a4ae12bfc03f465d6a4bef64395e7f2746 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Kanit:wght@400;700&family=Quicksand:wght@400;500;600;700&display=swap');


:root {
	--neon-green: #45FFCA;
	--neon-yellow: #FEFFAC;
	--light-green: #DCFFB7;
	--pastel-red: #FF6868;
	--soft-purple: #BEADFA;
	--softer-purple: #D0BFFF;
}


body {
	margin: 0px;
	padding: 0px;
}

body::-webkit-scrollbar {
	width: 0px;
}

.headNav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	max-width: 95%;
	margin: -10px auto;
	font-family: "Quicksand";
}

.rightNav {
	display: flex;
	cursor: pointer;
}

.rightNav a {
	text-decoration: none;
	color: black;
	font-size: 20px;
}

.rightNav p {
	margin-right: 10px;
	margin-left: 10px;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: black;
	}

	.rightNav a {
		color: white;
	}
}