-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (90 loc) · 1.84 KB
/
style.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
nav {
display: flex;
justify-content: space-between;
max-width: 100%;
margin: 0 auto;
height: 72px;
align-items: center;
background-color: #f7f8fc00;
color: black;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 18px;
}
.logo {
color: black;
background-color: black;
}
nav ul {
display: flex;
list-style: none;
gap: 24px;
}
button {
margin: 13px 90px 5px;
padding: 9px 31px;
border-color: #6674cc;
border-style: solid;
border-radius: 20px;
background: #6674cc;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
/* font-weight: 900px; */
font-size: 18px;
}
.main {
padding: 35px;
margin-top: 55px;
display: flex;
height: 120px;
width: 100px;
background-color: transparent;
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
.hero1 {
position: relative;
left: 750px;
bottom: 275px;
padding: 0px 12px 14px 25px;
margin: 0px 10px 13px 19px;
}
h1 {
display: flex;
font-size: 70px;
padding: 75px 75px 12px;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
section {
background-color: aliceblue;
}
.abcd {
font-size: 25px;
padding: 0px 65px 9px;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.fish{
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
position: relative;
left: 16%;
padding-bottom: 30%;
}
footer {
background-color: #6674cc;
color: #fff;
text-align: center;
padding: 70px 0;
}
/* Responsive Styling */
@media (max-width: 768px) {
footer {
padding: 50px 0; /* Adjust padding for smaller screens */
}
}
@media (max-width: 480px) {
footer {
padding: 30px 0; /* Further adjust padding for even smaller screens */
}
}