_header.scss 397 B

1234567891011121314151617181920212223242526
  1. header{
  2. width: 100%;
  3. height: 50vh;
  4. position: relative;
  5. display: inline-flex;
  6. align-items: center;
  7. .contact{
  8. position: fixed;
  9. top: 50px;
  10. right: 50px;
  11. svg{
  12. animation: rotation 6s infinite linear;
  13. width: 90.4px;
  14. height: 87.45px;
  15. }
  16. h3{
  17. transform: rotate(35deg);
  18. }
  19. p{
  20. display: none;
  21. }
  22. }
  23. h2{
  24. margin-left: 10px;
  25. }
  26. }