-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (62 loc) · 1.22 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
body {
background-color: rgb(57, 58, 58);
font-family: Arial, sans-serif;
color: white;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}
.nav {
width: 100%;
display: flex;
justify-content: flex-end;
padding: 10px;
background-color: rgba(0, 0, 0, 0.5);
}
.nav button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
font-size: 1em;
}
.nav button:hover {
background-color: #45a049;
}
.container {
text-align: center;
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin-top: 50px;
}
.description {
text-align: center;
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin-top: 20px;
width: 80%;
font-size: 1.5em; /* Increase font size */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
}
.big-text {
font-size: 4em;
font-family: 'Courier New', Courier, monospace;
margin-top: 20px;
}