-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
57 lines (49 loc) · 1.04 KB
/
styles.css
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
/* General styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('flag_bg.jpg'); /* Replace 'background-image.jpg' with your image file */
background-size: cover;
background-position: center;
}
header {
display: flex;
justify-content: center; /* Center align content */
align-items: center;
padding: 20px;
background-color: transparent;
color: white;
}
h1 {
font-size: 80px; /* Increase font size */
color: black; /* Change font color to black */
margin: 0; /* Remove default margin */
}
nav ul {
list-style: none;
display: flex;
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: white;
}
.hero {
text-align: center;
padding: 50px 20px;
background-color: transparent;
}
.auth {
text-align: center;
padding: 20px;
}
.auth-options button {
padding: 10px 20px;
margin: 0 10px;
font-size: 16px;
}