base.css 653 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .header {
  2. font-size: 3em;
  3. color: white;
  4. background: #404040;
  5. text-align: center;
  6. height: 2.5em;
  7. text-shadow: 4px 4px 4px black;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. #error {
  13. font-size: 2em;
  14. color: red;
  15. height: 50px;
  16. text-shadow: 2px 2px 2px black;
  17. margin: 2em;
  18. display: none;
  19. }
  20. .container {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. flex-direction: column;
  25. }
  26. .visible {
  27. display: block;
  28. }
  29. #target {
  30. width: 100% !important;
  31. height: 100% !important;
  32. position: absolute;
  33. }
  34. body {
  35. background: #000000;
  36. margin: 0;
  37. padding: 0;
  38. overscroll-behavior: none;
  39. }