home.css 894 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .home {
  2. height: 100vh;
  3. padding: 0;
  4. margin: 0;
  5. color: #f9fafc;
  6. overflow: hidden;
  7. }
  8. .background {
  9. height: 100%;
  10. width: 100%;
  11. padding: 0;
  12. margin: 0;
  13. background-attachment: fixed;
  14. transform: scale(1.1);
  15. filter: blur(3px);
  16. -webkit-filter: blur(3px);
  17. background-size: cover;
  18. }
  19. .content {
  20. position: relative;
  21. top: -80%;
  22. height: 75%;
  23. }
  24. .home img {
  25. width: 160px;
  26. max-width: 50%;
  27. height: auto;
  28. }
  29. .home .greeting {
  30. color: #f9fafc;
  31. }
  32. .home .typing-carousel {
  33. font-size: 14pt;
  34. color: #f0f0f0;
  35. }
  36. #typing-carousel-data {
  37. display: none;
  38. }
  39. .arrow {
  40. position: absolute;
  41. color: #f9fafc;
  42. font-size: 1.5rem;
  43. bottom: 0;
  44. }
  45. .bounce {
  46. animation: bounce 2s infinite;
  47. }
  48. @keyframes bounce {
  49. 0%,
  50. 20%,
  51. 50%,
  52. 80%,
  53. 100% {
  54. transform: translateY(0);
  55. }
  56. 40% {
  57. transform: translateY(-30px);
  58. }
  59. 60% {
  60. transform: translateY(-15px);
  61. }
  62. }