56 lines
1.3 KiB
CSS
56 lines
1.3 KiB
CSS
body {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: #0d1021;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
|
|
}
|
|
|
|
.mefx-container {
|
|
text-align: center;
|
|
}
|
|
|
|
.mefx-title {
|
|
color: #4fdcff;
|
|
font-size: 2.8rem;
|
|
font-weight: 700;
|
|
letter-spacing: 2px;
|
|
margin-bottom: 2.5rem;
|
|
text-shadow:
|
|
0 0 8px #4fdcff,
|
|
0 0 24px #1ec8ff,
|
|
0 0 2px #fff;
|
|
font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
|
|
}
|
|
|
|
.mefx-button-group {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.mefx-btn {
|
|
background: rgba(18, 34, 60, 0.8);
|
|
color: #4fdcff;
|
|
border: 2px solid #4fdcff;
|
|
border-radius: 8px;
|
|
padding: 1rem 2.5rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 6px #4fdcff, 0 0 12px #1ec8ff;
|
|
box-shadow: 0 0 16px #1ec8ff44, 0 0 2px #4fdcff;
|
|
text-decoration: none;
|
|
transition: background 0.3s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
|
|
font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
|
|
}
|
|
|
|
.mefx-btn:hover, .mefx-btn:focus {
|
|
background: rgba(18, 34, 60, 1);
|
|
color: #fff;
|
|
border-color: #fff;
|
|
box-shadow: 0 0 24px #4fdcff, 0 0 32px #1ec8ff;
|
|
outline: none;
|
|
}
|