-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguam_geoguessr.css
More file actions
72 lines (63 loc) · 1.33 KB
/
Copy pathguam_geoguessr.css
File metadata and controls
72 lines (63 loc) · 1.33 KB
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
body {
background-image: url(https://img.freepik.com/fotos-premium/weisser-textur-wandpapier-idee-hintergrund_1178440-335.jpg);
background-size: cover;
font-family: 'Inter', sans-serif;
color: #333;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
font-size: 50px;
margin-top: 40px;
color: #222;
}
h2 {
font-size: 24px;
font-weight: 600;
color: #222;
margin-top: 30px;
}
h3 {
font-size: 18px;
font-weight: 500;
color: #444;
}
button.button7 {
margin-top: 20px;
margin-left: 5px;
font-size: 20px;
border: 2px solid transparent;
color: #fff;
background: linear-gradient(135deg, #4CAF50, #388E3C);
border-radius: 25px;
padding: 12px 25px;
transition: all 0.3s ease;
}
button.button7:hover {
background: linear-gradient(135deg, #45a049, #2e7d32);
cursor: pointer;
border: 2px solid #fff;
}
img {
width: 100%;
max-width: 600px;
height: auto;
display: block;
margin: 20px auto;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
h1 {
font-size: 40px;
}
button.button7 {
width: 95%;
font-size: 18px;
}
img {
width: 100%;
max-width: 95%;
}
}