base.css 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #model {
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. z-index: -1;
  8. }
  9. .row {
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-around;
  13. }
  14. .page {
  15. width: 1000px;
  16. margin: 1em;
  17. }
  18. .title {
  19. height: 500px;
  20. width: 100%;
  21. }
  22. .titleText {
  23. font-family: 'Epilogue', sans-serif;
  24. font-size: 5em;
  25. color: white;
  26. padding: 1em;
  27. text-shadow: 4px 4px grey;
  28. }
  29. .content {
  30. width: 100%;
  31. }
  32. .section {
  33. width: 300px;
  34. height: 500px;
  35. background-color: rgba(0, 0, 0, 0.5);
  36. margin-top: 20px;
  37. box-shadow: 4px 4px black;
  38. }
  39. .sectionText {
  40. font-family: 'Epilogue', sans-serif;
  41. color: white;
  42. margin: 1.5em 0.5em;
  43. }
  44. canvas {
  45. width: 100%;
  46. height: 100%;
  47. margin: 0;
  48. overflow: hidden;
  49. outline: none;
  50. }
  51. body {
  52. width: 100%;
  53. height: 100%;
  54. margin: 0;
  55. padding: 0;
  56. overscroll-behavior: none;
  57. background-image: url("./resources/background.jpg");
  58. background-attachment: fixed;
  59. background-repeat: no-repeat;
  60. }