cannabinieri website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
830 B

3 years ago
  1. .container {
  2. background-color: #05f2a5;
  3. font-family: 'Lato', sans-serif;;
  4. background-size: cover;
  5. background-repeat: no-repeat;
  6. height: calc(100% - 30vh);
  7. min-height: 55vh;
  8. margin: 5vh 5vw;
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-evenly;
  12. flex-direction: column;
  13. }
  14. .container h2 {
  15. color: #fff;
  16. text-align: center;
  17. padding: 0 6vw .5vh 6vw;
  18. font-size: 8.5vw;
  19. line-height: 7.5vh;
  20. letter-spacing: 0.045vw;
  21. }
  22. .container p {
  23. color: #333;
  24. letter-spacing: 0.045vw;
  25. }
  26. .container a {
  27. text-decoration: none;
  28. background-color: #fff;
  29. padding: 2vh 6vw;
  30. color: #3dbd92;
  31. letter-spacing: 0.045vw;
  32. font-weight: 600;
  33. }
  34. .container a:active, .container a:hover {
  35. box-shadow: 0px 0px 10px #333;
  36. color: hsl(160,51%, 39%);
  37. }