-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
211 lines (185 loc) · 3.36 KB
/
style.css
File metadata and controls
211 lines (185 loc) · 3.36 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
body {
margin: 0;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
background: #fff0f5;
}
header {
background: white;
padding: 15px;
position: sticky;
top: 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
z-index: 100;
}
nav a {
margin: 0 15px;
color: #ff4f81;
text-decoration: none;
font-weight: bold;
}
.home {
height: 100vh;
background: url("https://images.unsplash.com/photo-1513151233558-d860c5398176");
background-size: cover;
background-position: center;
}
.overlay {
background: rgba(255, 182, 193, 0.85);
height: 100%;
padding: 80px 20px;
text-align: center;
}
.overlay h2 {
font-size: 40px;
}
.overlay p {
max-width: 600px;
margin: auto;
font-size: 18px;
}
button {
margin-top: 20px;
padding: 12px 30px;
border: none;
border-radius: 30px;
background: linear-gradient(to right, #ff758c, #ff7eb3);
color: white;
font-size: 16px;
cursor: pointer;
}
.section {
padding: 60px 20px;
text-align: center;
}
.gallery {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.gallery img {
width: 220px;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
#puzzle {
display: grid;
grid-template-columns: repeat(3, 100px);
gap: 5px;
justify-content: center;
margin: 20px auto;
}
.tile {
width: 100px;
height: 100px;
background-image: url("assets/naruto2.png");
background-size: 300px 300px;
cursor:pointer
}
.hidden-note {
display: none;
margin-top: 25px;
padding: 20px;
max-width: 500px;
background: linear-gradient(135deg, #ffb6c1, #ffd1dc);
border-radius: 20px;
font-size: 18px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
margin-left: auto;
margin-right: auto;
animation: pop 0.6s ease;
}
@keyframes pop {
0% { transform: scale(0.5); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
#confetti {
animation: floatUp 3s ease forwards;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
width: 100%;
height: 100%;
}
.hidden {
display: none;
}
#envelope-container {
margin-top: 30px;
display: flex;
justify-content: center;
}
#envelope {
position: relative;
width: 220px;
height: 140px;
cursor: pointer;
}
.envelope-back {
position: absolute;
width: 100%;
height: 100%;
background: #ffb6c1;
border-radius: 10px;
}
.envelope-front {
position: absolute;
width: 100%;
height: 100%;
background: #ffd1dc;
clip-path: polygon(0 0, 50% 50%, 100% 0, 100% 100%, 0 100%);
}
.envelope-flap {
position: absolute;
width: 100%;
height: 100%;
background: #ff9eb5;
clip-path: polygon(0 0, 50% 60%, 100% 0);
transform-origin: top;
transition: transform 0.6s ease;
}
.letter {
position: absolute;
top: 20px;
left: 10px;
width: 200px;
padding: 15px;
background: white;
border-radius: 10px;
font-size: 14px;
text-align: center;
transform: translateY(60px);
opacity: 0;
transition: all 0.6s ease;
z-index: 2;
}
#envelope.open .envelope-flap {
transform: rotateX(180deg);
}
#envelope.open .letter {
transform: translateY(-120px);
opacity: 1;
}
/* HEARTS */
.heart {
position: fixed;
font-size: 20px;
animation: floatUp 2s ease forwards;
}
@keyframes floatUp {
0% {
opacity: 1;
transform: translateY(0) scale(1);
}
100% {
opacity: 0;
transform: translateY(-150px) scale(1.5);
}
}
footer {
background: #222;
color: white;
padding: 15px;
}