File size: 1,384 Bytes
772d253 | 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 | .retro-theme {
background: #0a0a2a;
color: #00ff41;
font-family: "Press Start 2P", monospace;
}
.hero-section {
text-align: center;
margin: 4rem 0;
}
.glitch-text {
text-shadow: 2px 2px #ff00ff;
animation: glitch 1s infinite;
}
.subtitle {
color: #00ff41;
margin: 1rem 0;
}
.cta-button {
background: #ff00ff;
color: white;
border: none;
padding: 1rem 2rem;
font-size: 1.2rem;
cursor: pointer;
border-radius: 4px;
font-family: inherit;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 4rem 0;
}
.feature-card {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 8px;
border: 1px solid #00ff41;
text-align: center;
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #ff00ff;
}
.tech-stack {
text-align: center;
margin: 4rem 0;
}
.tech-badges {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.badge {
background: #ff00ff;
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
}
@keyframes glitch {
0% {
text-shadow: 2px 2px #ff00ff;
}
25% {
text-shadow: -2px 2px #00ff41;
}
50% {
text-shadow: 2px -2px #ff00ff;
}
75% {
text-shadow: -2px -2px #00ff41;
}
100% {
text-shadow: 2px 2px #ff00ff;
}
}
|