-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (88 loc) · 1.52 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #fffbea;
color: #333;
}
.hidden {
display: none;
}
#loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fffbea;
display: flex;
justify-content: center;
align-items: center;
}
.cow-animation {
width: 50px;
height: 50px;
background: url('assets/cow-animation.gif') no-repeat center center;
background-size: cover;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px 0;
}
section {
padding: 60px 0;
}
#hero {
text-align: center;
background-color: #fff8e1;
padding: 100px 0;
}
#hero h1 {
font-size: 3em;
color: #d4a017;
}
#hero p {
font-size: 1.5em;
color: #8b5e3c;
}
.hero-image img {
width: 300px;
height: auto;
margin: 20px 0;
}
#connectButton {
padding: 15px 30px;
font-size: 1em;
background-color: #ffcc00;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
#connectButton:hover {
background-color: #e6b800;
}
h2 {
font-size: 2.5em;
color: #d4a017;
text-align: center;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
color: #8b5e3c;
text-align: center;
}
button {
padding: 10px 20px;
font-size: 1em;
margin: 10px;
background-color: #ffcc00;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #e6b800;
}