-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
67 lines (59 loc) · 1.37 KB
/
contact.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
body {
font-family: 'Arial', sans-serif;
background-image: url('gallery 10.jpg');
background-size: cover;
background-position: center;
color: white;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
footer {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 0;
position: absolute;
bottom: 0;
}
header h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
.contact-button {
background-color: rgba(255, 255, 255, 0.2);
color: white;
padding: 10px 20px;
margin: 10px;
border-radius: 10px;
border: 2px solid white;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
cursor: pointer;
}
.contact-button:hover, .contact-button:focus {
background-color: rgba(255, 255, 255, 0.4);
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.back-button {
text-decoration: none;
color: white;
background-color: rgba(0, 0, 0, 0.5);
padding: 10px 20px;
border-radius: 5px;
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}
.back-button:hover {
background-color: rgba(0, 0, 0, 0.7);
transition: background-color 0.3s ease;
}