f
Contact
– Lapeno.store
Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
lapeno.store
style>
#lapeno-loader {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
animation: fadeOut 2s ease 2.5s forwards;
}
.lapeno-content {
text-align: center;
}
.lapeno-logo {
width: 120px;
height: auto;
margin-bottom: 20px;
animation: zoomIn 1.2s ease;
}
.lapeno-content h1 {
font-family: 'Playfair Display', serif;
font-size: 3.2rem;
color: white;
animation: pulse 2s infinite;
text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
}
.lapeno-content h1 span {
color: gold;
}
@keyframes fadeOut {
to { opacity: 0; visibility: hidden; }
}
@keyframes pulse {
0%, 100% { opacity: 0.8; transform: scale(1); }
50% { opacity: 1; transform: scale(1.05); }
}
@keyframes zoomIn {
0% { transform: scale(0.6); opacity: 0; }
100% { transform: scale(1); opacity: 1;
}