-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (49 loc) · 901 Bytes
/
style.css
File metadata and controls
57 lines (49 loc) · 901 Bytes
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
body {
background-color: #344a72;
font-family: "Roboto", sans-serif;
}
.welcome-box {
width: 500px;
height: 300px;
margin: auto;
margin-top: 150px;
background-color: white;
border-radius: 10px;
text-align: center;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.welcome-box h1 {
margin-top: 30px;
color: #333;
}
.welcome-box p {
margin: 30px 0;
font-size: 18px;
color: #555;
}
.main-button {
display: inline-block;
padding: 12px 30px;
background-color: #49c1a2;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
transition: background-color 0.3s;
}
.main-button:hover {
background-color: #3aa18a;
}
h1 {
text-align: center;
padding-top: 15px;
}
h4 {
text-align: center;
}
p {
text-align: center;
padding-top: 20px;
font-size: 15px;
}