-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
150 lines (133 loc) · 2.98 KB
/
stylesheet.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.background{
width: 100%;
height: 120vh;
background-image: url(bg_image.jpg);
background-repeat: no repeat;
background-size: cover;
background-position: center;
}
body .first{
background-color: rgb(46, 109, 122);
}
header{
background: rgb(27, 24, 24);
}
header nav .navbar a:hover{
color: rgb(233, 83, 28);
}
.container{
max-width:1150px;
padding: 15px 10px;
margin: 0 auto;
}
header nav .navbar a{
color: rgb(237, 237, 232);
text-decoration: none;
margin-right: 4rem;
}
.home{
position: relative;
justify-content: space-between;
background-position: center;
display: flex;
padding: 50px 200px 0;
}
.home img{
width:400px;
height:500px;
}
.Home-content h1{
font-size:60px;
font-family:'Times New Roman', Times, serif;
color:rgb(132, 29, 17);
}
.Home-content h2{
color: black;
padding:10px;
}
.Home-content p1{
font-size: large;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding:50px;
color:rgb(10, 25, 85)
}
.Home-content p2,ul{
font-size: large;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding:50px;
color:rgb(10, 25, 85)
}
body .second{
width: 120%;
height: 120vh;
background-image: url(bg2.webp);
background-repeat: no repeat;
background-size: cover;
background-position: center;
}
.contact-content h1{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.contact-form{
padding: 0 20px;
padding-top: 30px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 20px;
}
.contact-form div{
padding: 1px 0;
display: flex;
flex-direction: column;
}
.contact-form div input{
width:26vw;
border-radius: 5px;
margin:2px 0 0 0;
padding: 5px ;
}
#emailhelp{
font-size: 20px;
color: rgb(32, 32, 177);
margin 0 5px;
}
.contact-sci a{
display: inline-flex;
justify-content: center;
align-items: center;
width: 50px;
height: 40px;
background: transparent;
border: 2px solid #0ef;
border-radius: 50px;
font-size: 25px;
color: #0ef;
text-decoration: none;
margin: 10px 10px 10px ;
margin-left: 10px;
}
.contact-sci a:hover {
background: #0ef;
color: #081b29;
box-shadow: 0 0 20px #0ef;
}
.btn-box
{
display: inline-block;
padding: 12px 28px;
background: 40px;
border-radius: 40px;
font-size: 16px;
color: #081b29;
}
.contact-sci h3{
color: rgb(165, 5, 5);
}