-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
39 lines (34 loc) · 771 Bytes
/
home.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
/* Home.css */
body {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
/* Animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Paragraph style */
.welcome {
/* background-color: #131720; */
color: white;
/* border: solid 5px; */
font-family: 'Poppins';
font-size: 20px;
text-align: center;
animation: fadeIn 2s ease-in-out;
margin-top: 40px;
margin-left: 520px;
width: 400px
}
.parag {
/* background-color: white; */
/* border: solid; */
/* border-color:#131720; */
color: white;
font-family: 'Poppins';
font-size: 20px;
/* text-align: center; */
animation: fadeIn 2s ease-in-out;
}