-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
60 lines (53 loc) · 1.46 KB
/
main.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
58
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #02133e;
color: white;
font-size: 130%; /* Enlarge all text by 130% */
}
@font-face {
font-family: 'CustomFont';
src: url('bl.ttf') format('truetype');
}
h2 {
font-family: 'CustomFont', Arial, sans-serif;
}
ul {
list-style-type: none;
padding: 0;
}
ul li a {
text-decoration: none;
color: white;
transition: color 0.3s ease;
}
ul li a:hover {
color: lime;
}
.button-container {
display: flex;
justify-content: center;
margin-top: 40px; /* Increase the margin-top to move the buttons up */
}
.button {
background-color: white;
border: none;
color: #02133e;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin: 0 10px;
border-radius: 15px; /* Make the buttons rounded */
}
.logo {
margin-top: 20px; /* Adjust the margin-top to move the logo down */
}
#particles-js{
width: 100%;
height: 100%;
background-color: #02133e;
background-image: url('');
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
}