Spaces:
Running
Running
File size: 1,733 Bytes
ca1bc1d 9c161b3 ca1bc1d 9c161b3 ca1bc1d 9c161b3 ca1bc1d 9c161b3 ca1bc1d 9c161b3 ca1bc1d 9c161b3 | 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 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100dvh;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
overflow-x: hidden;
padding: 2rem;
}
.container {
text-align: center;
max-width: 800px;
}
h1 {
font-size: clamp(32px, 8vw, 64px);
margin-bottom: 2rem;
color: #ffffff;
line-height: 1.2;
}
h1 span {
color: rgba(255, 255, 255, 0.7);
font-size: clamp(24px, 5vw, 40px);
display: block;
}
.arrow {
width: 120px;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-20px);
}
60% {
transform: translateY(-10px);
}
}
.footer-badge {
position: fixed;
left: 8px;
bottom: 8px;
z-index: 10;
background: rgba(0, 0, 0, 0.8);
padding: 8px 12px;
border-radius: 8px;
font-size: 12px;
color: #fff;
text-align: center;
backdrop-filter: blur(10px);
}
.footer-badge a {
color: #fff;
text-decoration: underline;
}
.footer-badge a:hover {
color: #667eea;
}
.logo-img {
width: 16px;
height: 16px;
vertical-align: middle;
display: inline-block;
margin-right: 4px;
border-radius: 50%;
}
@media (max-width: 600px) {
body {
padding: 1rem;
}
.arrow {
width: 80px;
}
.footer-badge {
font-size: 10px;
padding: 6px 10px;
}
}
|