|
|
|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
background-color: #000011; |
|
color: #f0f0f0; |
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
|
overflow-x: hidden; |
|
} |
|
|
|
|
|
#bg { |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
z-index: -1; |
|
} |
|
|
|
|
|
.content-wrapper { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
min-height: 100vh; |
|
padding: 2rem; |
|
} |
|
|
|
|
|
.iframe-container { |
|
width: 90%; |
|
max-width: 1200px; |
|
background: rgba(0, 20, 30, 0.6); |
|
border: 1.5px solid #00ffff; |
|
border-radius: 10px; |
|
padding: 10px; |
|
box-shadow: |
|
0 0 10px rgba(0, 255, 255, 0.5), |
|
0 0 25px rgba(0, 255, 255, 0.4), |
|
0 0 50px rgba(0, 255, 255, 0.3), |
|
inset 0 0 10px rgba(0, 255, 255, 0.3); |
|
backdrop-filter: blur(3px); |
|
-webkit-backdrop-filter: blur(3px); |
|
} |
|
|
|
iframe { |
|
display: block; |
|
border-radius: 5px; |
|
} |