home.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @import "../../styles/variables";
  2. .hero {
  3. min-height: 100vh;
  4. overflow: hidden;
  5. position: relative;
  6. display: flex;
  7. align-items: center;
  8. h1 {
  9. font-size: 36px;
  10. color: $color-white;
  11. }
  12. .bg {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. bottom: 0;
  18. background: $color-black;
  19. opacity: 0.8;
  20. z-index: 3;
  21. height: 100%;
  22. width: 100%;
  23. }
  24. .bg-img {
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. z-index: 2;
  31. background-image: url(https://cdn.pixabay.com/photo/2015/03/08/21/06/cycling-664753_960_720.jpg);
  32. background-repeat: no-repeat;
  33. background-position: center;
  34. background-size: cover;
  35. @media (min-width: 992px) {
  36. display: none;
  37. }
  38. }
  39. video {
  40. position: absolute;
  41. top: 50%;
  42. left: 50%;
  43. transform: translate(-50%, -50%);
  44. z-index: 1;
  45. @media (max-width: 991px) {
  46. display: none;
  47. }
  48. }
  49. }