styles.css 373 B

1234567891011121314151617181920212223242526
  1. /* This CSS file will need to be added to the styling of
  2. your web pages for the styles to be rendered. */
  3. body {
  4. background-color: #333;
  5. color: white;
  6. }
  7. a {
  8. color: #ffc107;
  9. }
  10. .jumbotron {
  11. display: flex;
  12. align-items: center;
  13. margin: 0;
  14. height: 100vh;
  15. color: white;
  16. background-color: #333;
  17. }
  18. .space-above {
  19. margin-top: 20px;
  20. padding-top: 20px;
  21. }