-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
104 lines (102 loc) · 1.96 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
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
body {
background-image: url('Screenshot 2024-04-19 205127.png');
}
.container{
width: 500px;
height: 70px;
border-radius: 20px;
box-shadow: 2px 3px 5px grey;
display: flex;
flex-direction: row;
justify-content: flex-end;
flex-wrap:wrap;
align-items: center;
background-color: grey;
margin-top: 20px;
}
.logo{
width: 150px;
height: 50px;
flex-grow: 7;
}
.main{
color: black;
font-weight: bold;
/* text-transform: uppercase; */
padding: 5px;
text-shadow: 2px 3px 5px blue;
letter-spacing: 2px;
}
.sub{
color: black;
font-weight: bold;
margin-top: -20px;
font-size: 10px;
margin-left: 8px;
letter-spacing: 3px;
}
ul{
display: flex;
flex-wrap:wrap;
list-style-type: none;
flex-direction: row;
justify-content: flex-end;
align-items: center;
margin-left: 30px;
margin-top: 20px !important;
width: 500px;
height: 50px;
}
li a{
text-decoration: none;
margin-right: 30px;
color: black;
/* text-transform: none; */
font-weight: bold;
}
.section1{
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 100px !important;
}
.subsec{
width: 500px;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
/* text-align: left; */
align-items: center;
align-self: center;
}
.heading{
color: darkblue;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
/* text-transform: uppercase; */
font-size: 60px;
letter-spacing: 6px;
text-shadow: 2px 4px 6px black;
}
.subheading {
color: darkblue;
font-style: italic;
font-family: 'Times New Roman', Times, serif; /* Change to a cursive font */
letter-spacing: 2px;
font-size: 22px; /* Decrease the font size */
margin-center: 20px;
}
.butt{
width: 250px;
height: 50px;
background-color: white;
border:2px solid rgb(141, 141, 148);
color: darkblue;
text-transform: uppercase;
font-weight: bold;
border-radius: 20px;
}
.butt:hover{
background-color:rgga(28, 49, 41, 0.767); ;
}