-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThank You.css
49 lines (42 loc) · 854 Bytes
/
Thank You.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
body {
margin: 0;
padding: 0;
}
.thank-you-page {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.thank-you-text {
margin-bottom: 2rem;
}
.thank-you-text h1 {
font-size: 3rem;
color: #fff;
}
.thank-you-button {
text-align: center;
}
.thank-you-button a {
display: inline-block;
padding: 1rem 2rem;
background-color: #9d6cf2;
color: #fff;
font-size: 1.5rem;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.2s ease;
}
.thank-you-button a:hover {
background-color: #8039b7;
}
.background {
background-image: url('images/nea2.png');
background-size: cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}