-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (87 loc) · 1.9 KB
/
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
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
body {
margin: 0;
font-family: Arial, sans-serif;
background-image: url('./assets/background.jpg');
background-size: cover;
background-attachment: fixed;
/* Add the following properties for background blur */
backdrop-filter: blur(5px); /* Adjust blur amount as desired */
}
header {
text-align: center;
padding: 2rem 1rem;
background: rgba(0, 0, 0, 0.7); /* Adjust transparency as needed */
color: #fff;
border-radius: 1rem;
}
footer {
text-align: center;
padding: 10px;
background-color: rgba(0, 0, 0, 0.7);;
margin-top: 20px;
color: #fff;
border-radius: 1rem;
}
a{
text-decoration: none;
}
.buttons {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.button {
background: #fff; /* Change background color */
border-radius: 10px;
overflow: hidden;
text-align: center;
margin: 20px;
width: 250px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.button img {
width: 100%;
height: auto;
display: block;
}
.button p {
margin: 0;
padding: 15px 0;
background: #333; /* Change button text background color */
color: #fff;
}
.button:hover {
transform: translateY(-5px); /* Adjust hover effect distance */
background-color: #ddd; /* Add a hover background color change */
}
.header_image{
max-width: 20%;
max-height: 10%;
}
.social-buttons {
display: flex;
justify-content: center;
margin: 20px 0;
}
.social-button {
margin: 0 10px;
text-align: center;
}
.social-button img {
width: 40px;
height: 40px;
}
.social-button p {
margin: 5px 0 0;
font-size: 14px;
color: #fff;
}
.contacts{
display: flex;
justify-content: center;
margin: 20px 0;
font-size: small;
line-height: 20px;
}