-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguam_kultur.css
More file actions
106 lines (93 loc) · 1.91 KB
/
Copy pathguam_kultur.css
File metadata and controls
106 lines (93 loc) · 1.91 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
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
html {
background: linear-gradient(135deg, #87CEFA, #4682B4);
font-family: 'Inter', sans-serif;
color: #333;
margin: 0;
padding: 0;
}
.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;
}
.button5 {
margin: 10px;
font-size: 18px;
border: 2px solid transparent;
color: #fff;
background: linear-gradient(135deg, #4CAF50, #388E3C);
border-radius: 25px;
padding: 12px 25px;
transition: all 0.3s ease;
}
.button5:hover {
background: linear-gradient(135deg, #45a049, #2e7d32);
cursor: pointer;
border: 2px solid #fff;
}
h1 {
color: #222;
text-align: center;
font-size: 50px;
margin-bottom: 25px;
}
p {
font-size: 20px;
line-height: 1.8;
}
.textblöcke {
color: #444;
}
.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);
}
.herkunft, .sprache, .altersstruktur, .religion {
padding: 20px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 20px;
font-weight: 600;
margin: 20px auto;
max-width: 700px;
min-height: 220px;
}
.herkunft {
background: #d63384;
color: white;
}
.sprache {
background: #28a745;
color: white;
}
.altersstruktur {
background: #007bff;
color: white;
}
.religion {
background: #fd7e14;
color: white;
}
@media (max-width: 768px) {
.herkunft, .sprache, .altersstruktur, .religion {
width: 95%;
min-height: 200px;
}
.main {
padding: 20px;
}
h1 {
font-size: 40px;
}
}