-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
130 lines (107 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto Mono', monospace;
background: linear-gradient(135deg, #0f0f0f 40%, #1b1b1b);
color: #fff;
line-height: 1.5;
font-size: 0.9rem;
}
.animated-title {
font-size: 2.5rem;
color: #fff;
text-transform: uppercase;
letter-spacing: 3px;
display: inline-block;
transition: color 0.5s ease;
animation: colorChange 5s infinite alternate;
}
@keyframes colorChange {
0% {
color: #fff;
}
50% {
color: #ff0033;
}
100% {
color: #fff;
}
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
background: #141414;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
border-bottom: 2px solid #ff0033;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ff0033;
}
main {
padding: 60px 5%;
}
#sobre, #discord {
margin-bottom: 60px;
background: #1c1c1c;
padding: 30px;
border-radius: 15px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}
h2 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #ff0033;
}
p {
font-size: 1rem;
margin-bottom: 15px;
color: #bfbfbf;
}
.highlight {
color: #ff0033;
font-weight: bold;
}
.discord-btn {
display: inline-block;
background: linear-gradient(135deg, #ff0033, #ff6666);
padding: 12px 25px;
color: #fff;
text-decoration: none;
font-size: 1.1rem;
border-radius: 50px;
box-shadow: 0px 4px 15px rgba(255, 0, 51, 0.4);
transition: background 0.3s ease, transform 0.3s ease;
}
.discord-btn:hover {
background: linear-gradient(135deg, #ff6666, #ff0033);
transform: scale(1.05);
}
footer {
padding: 15px 5%;
text-align: center;
background: #141414;
border-top: 2px solid #ff0033;
box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.5);
}
footer p {
color: #888;
font-size: 0.85rem;
}