-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguam_standort.css
More file actions
76 lines (68 loc) · 1.4 KB
/
Copy pathguam_standort.css
File metadata and controls
76 lines (68 loc) · 1.4 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
73
74
75
76
body {
background: linear-gradient(135deg, #87CEFA, #4682B4);
font-family: 'Inter', sans-serif;
color: #333;
margin: 0;
padding: 0;
}
h1 {
color: #222;
text-align: center;
font-size: 50px;
margin-bottom: 25px;
}
h2 {
font-size: 24px;
font-weight: 600;
color: #222;
}
ul {
font-size: 18px;
line-height: 1.8;
color: #444;
}
button.button6 {
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.button6:hover {
background: linear-gradient(135deg, #45a049, #2e7d32);
cursor: pointer;
border: 2px solid #fff;
}
.main {
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 30px;
max-width: 1100px;
margin: 50px auto;
}
.kultur_bild {
width: 100%;
max-width: 1000px;
height: auto;
display: block;
margin: 50px auto;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
button.button6 {
width: 95%;
font-size: 18px;
}
h1 {
font-size: 40px;
}
.main {
padding: 20px;
}
}