-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
43 lines (40 loc) · 851 Bytes
/
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
/* Resets default margins and paddings for better cross-browser consistency */
* {
margin: 0;
padding: 0;
}
/* Styling for the body element */
body {
background-image: url('https://nostr.build/p/nb4903.jpeg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
font-family: cypherpunk, sans-serif;
font-size: 50px;
color: orange;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Styling for the anchor element */
a {
color: blue;
text-decoration: underline;
}
/* Media queries for different screen sizes, adjusting font size */
@media screen and (max-width: 1024px) {
body {
font-size: 40px;
}
}
@media screen and (max-width: 768px) {
body {
font-size: 30px;
}
}
@media screen and (max-width: 480px) {
body {
font-size: 20px;
}
}