-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguam.css
More file actions
60 lines (54 loc) · 1.18 KB
/
Copy pathguam.css
File metadata and controls
60 lines (54 loc) · 1.18 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
html {
background-image: url("https://flagcdn.com/w2560/gu.png");
background-position: center top;
background-size: cover;
overflow: hidden;
background-attachment: fixed;
font-family: 'Inter', sans-serif;
background-repeat: no-repeat;
color: white;
margin: 0;
padding: 0;
}
.main {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
height: 95vh;
max-width: 1200px;
margin: auto;
padding-bottom: 150px;
}
.button {
font-size: 20px;
border: none;
color: white;
background: linear-gradient(135deg, #004d40, #00796b);
border-radius: 25px;
width: 150px;
height: 70px;
margin: 15px;
transition: all 0.3s ease;
flex: 1 1 22%;
max-width: 220px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.button:hover {
background: linear-gradient(135deg, #ff4500, #e63900);
cursor: pointer;
}
.button:active {
background: red;
}
@media (max-width: 900px) {
.button {
flex: 1 1 45%;
}
}
@media (max-width: 600px) {
.button {
flex: 1 1 80%;
}
}