-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (63 loc) · 1.2 KB
/
index.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
68
69
70
71
*{
margin: 0;
padding: 0;
}
html{
scroll-behavior: smooth;
}
body{
background: url('bg.jpg') no-repeat center/cover;
align-items: center;
}
/* main section */
#main{
display: flex;
flex-direction: column;
padding: 3px 200px;
height: 100vh;
justify-content: center;
align-items: center;
/* background: url('bg.jpg') no-repeat center/cover; */
}
#main h1{
color:white;
text-align: center;
font-size: 60px;
font-family: 'Nunito Sans', sans-serif ;
}
.container{
background-color: rgba(0, 0, 0, 0.382);
/* padding-bottom: 50px; */
padding: 50px 50px;
width:max-content;
}
#main p{
color:white;
text-align: center;
font-size: 22px;
font-family: 'Nunito Sans', sans-serif ;
margin-top: 10px;
}
/* Utility Classes */
.h-primary{
font-family:Arial;
text-align: center;
}
.btn{
/* width: 180px;
height: 40px; */
background-color: #0e4199;
margin: 17px;
color: white;
text-align: center;
padding: 12px 12px;
border: none;
font-size: 18px;
font-weight: bold;
text-decoration: none;
border-radius: 4px;
cursor:pointer;
}
.btn:hover{
background-color: #0e4199f1;
}