-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
112 lines (107 loc) · 1.72 KB
/
styles.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
margin: 0;
padding: 0;
}
.main
{
width: 100%;
background-image:url(1.png);
background-position: center;
background-size: cover;
height: 109vh;
}
.navbar {
width:100%;
height: 75px;
display:flex;
justify-content:flex-start;
align-items:center;
}
ul {
display: flex;
justify-content: flex-start;
}
ul li {
list-style: none;
margin-left: 62px;
margin-top: 27px;
}
ul li a {
text-decoration: none;
color: #fff;
font-family: Arial;
font-weight: bold;
}
ul li a:hover {
color: #ff7200;
}
.content
{
width:100%;
height: auto;
margin: auto;
color: #fff;
position: relative;
font-size: large;
}
.content .t
{
font-size: 90px;
color:aqua;
font-family: Arial;
font-weight: bolder;
}
.content .para
{
padding-left: 20px;
padding-bottom: 25px;
font-family: Arial;
letter-spacing: 1.2px;
line-height: 30px;
font-size: 27px;
color:white;
font-weight: bolder;
margin-top: 30px;
}
.content .para1
{
padding-left: 20px;
padding-bottom: 25px;
font-family: Arial;
letter-spacing: 1.2px;
line-height: 30px;
font-size: 50px;
color:aqua;
margin-top: 30px;
}
.content h1
{
font-family: 'Times New Roman';
font-size: 50px;
padding-left: 20px;
margin-top: 9%;
letter-spacing: 2px;
}
.content .btn
{
width: 150px;
height: 40px;
color: #fff;
margin-top: 30px;
margin-bottom: 10px;
margin-left: 40px;
font-size: 15px;
border-radius: 10px;
cursor: pointer;
}
.content .btn a
{
text-decoration: none;
color: black;
font-weight: bolder;
transition: .3s ease-in-out;
}
.btn:hover
{
background-color:aqua;
}