|
body { |
|
padding: 2rem; |
|
font-family: "Orbitron", "Arial", sans-serif; |
|
background: radial-gradient(circle, #0f2027, #203a43, #2c5364); |
|
color: #e0e0e0; |
|
} |
|
|
|
h1 { |
|
font-size: 20px; |
|
margin-top: 0; |
|
color: #00eaff; |
|
text-transform: uppercase; |
|
text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff; |
|
} |
|
|
|
p { |
|
color: #b0bec5; |
|
font-size: 14px; |
|
margin-bottom: 10px; |
|
margin-top: 5px; |
|
line-height: 1.6; |
|
} |
|
|
|
.card { |
|
max-width: 620px; |
|
margin: 0 auto; |
|
padding: 20px; |
|
border: 1px solid rgba(0, 255, 255, 0.3); |
|
border-radius: 16px; |
|
background: linear-gradient(145deg, #112233, #334455); |
|
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1); |
|
} |
|
|
|
.card:hover { |
|
box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2); |
|
transform: scale(1.02); |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.card p:last-child { |
|
margin-bottom: 0; |
|
} |
|
|
|
button { |
|
display: block; |
|
margin: 20px auto 0; |
|
padding: 10px 20px; |
|
font-size: 14px; |
|
color: #00eaff; |
|
background: transparent; |
|
border: 2px solid #00eaff; |
|
border-radius: 8px; |
|
cursor: pointer; |
|
text-transform: uppercase; |
|
box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5); |
|
transition: all 0.3s ease; |
|
} |
|
|
|
button:hover { |
|
background: #00eaff; |
|
color: #0f2027; |
|
box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7); |
|
} |