Spaces:
Running
Running
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f0f0f0; | |
| text-align: center; | |
| padding: 20px; | |
| margin: 0; | |
| } | |
| .container { | |
| background: rgba(128, 128, 128, 0.5); | |
| padding: 20px; | |
| border-radius: 10px; | |
| box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | |
| max-width: 500px; | |
| margin: auto; | |
| } | |
| h1 { | |
| font-size: 22px; | |
| color: #333; | |
| } | |
| input { | |
| width: 80%; | |
| padding: 8px; | |
| margin: 10px 0; | |
| border: 1px solid #ccc; | |
| border-radius: 5px; | |
| } | |
| button { | |
| background: #007bff; | |
| color: white; | |
| padding: 8px 15px; | |
| border: none; | |
| cursor: pointer; | |
| border-radius: 5px; | |
| margin: 5px; | |
| } | |
| button:hover { | |
| background: #0056b3; | |
| } | |
| #result { | |
| margin-top: 15px; | |
| text-align: left; | |
| padding: 10px; | |
| } | |
| #videoWrapper { | |
| display: flex; | |
| justify-content: center; | |
| margin-top: 20px; | |
| } | |
| #videoWrapper video { | |
| width: 360px; | |
| height: auto; | |
| border-radius: 10px; | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | |
| } | |
| #bgVideo { | |
| position: fixed; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| min-width: 100%; | |
| min-height: 100%; | |
| z-index: -1; | |
| object-fit: cover; | |
| background-color: black; | |
| } | |
| .chara { | |
| display: none; | |
| } | |
| .notif { | |
| position: fixed; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| background-color: rgba(255, 193, 7, 0.5); | |
| color: white; | |
| padding: 12px 24px; | |
| border-radius: 10px; | |
| font-size: 16px; | |
| text-align: center; | |
| max-width: 80%; | |
| z-index: 9999; | |
| opacity: 0; | |
| transition: opacity 0.5s ease; | |
| pointer-events: none; | |
| } | |