error.module.scss 772 B

1234567891011121314151617181920212223242526272829303132333435
  1. .page {
  2. height: calc(100vh - 57px);
  3. background: no-repeat center #000;
  4. background-size: cover;
  5. color: #fff;
  6. &.bg-1 {
  7. background-image: url("/images/bg/1.jpg");
  8. }
  9. &.bg-2 {
  10. background-image: url("/images/bg/2.jpg");
  11. }
  12. &.bg-3 {
  13. background-image: url("/images/bg/3.jpg");
  14. }
  15. &.bg-4 {
  16. background-image: url("/images/bg/4.jpg");
  17. }
  18. &.bg-5 {
  19. background-image: url("/images/bg/5.jpg");
  20. }
  21. .main {
  22. @apply w-full h-full flex flex-col justify-center items-center bg-gradient-to-r from-black/40 to-black/50;
  23. h1 {
  24. @apply text-7xl font-black mb-2 font-sans;
  25. @apply lg:text-9xl mb-5;
  26. }
  27. h2 {
  28. @apply text-2xl font-black mb-5;
  29. @apply lg:text-5xl lg:my-5;
  30. }
  31. .btn {
  32. @apply mt-5;
  33. }
  34. }
  35. }