forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.css
44 lines (38 loc) · 918 Bytes
/
thankyou.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: linear-gradient(to right, rgb(91, 57, 165) , rgb(108, 144, 185));
font-family: 'Roboto', sans-serif;
}
/* .container {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 90%;
} */
.container {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px,
rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
max-width: 400px;
text-shadow: 2px 2px 5px rgb(121, 113, 113);
width: 90%;
}
.container:hover {
transform: scale(1.05);
transition: transform 0.3s ease;
}
h2 {
color: #333;
font-family: Arial, sans-serif;
}