page.css 695 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. html, body {
  2. background-color: #fff;
  3. color: #636b6f;
  4. font-family: 'Nunito', sans-serif;
  5. font-weight: 200;
  6. height: 100vh;
  7. margin: 0;
  8. }
  9. .full-height {
  10. height: 100vh;
  11. }
  12. .flex-center {
  13. align-items: center;
  14. display: flex;
  15. justify-content: center;
  16. }
  17. .position-ref {
  18. position: relative;
  19. }
  20. .top-right {
  21. position: absolute;
  22. right: 10px;
  23. top: 18px;
  24. }
  25. .content {
  26. text-align: center;
  27. }
  28. .title {
  29. font-size: 84px;
  30. }
  31. .links > a {
  32. color: #636b6f;
  33. padding: 0 25px;
  34. font-size: 13px;
  35. font-weight: 600;
  36. letter-spacing: .1rem;
  37. text-decoration: none;
  38. text-transform: uppercase;
  39. }
  40. .m-b-md {
  41. margin-bottom: 30px;
  42. }