Advertisement
bebo231312312321

Untitled

Feb 18th, 2024
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .background{
  2.     position: relative;
  3.     background-image: url('/images/poster.jpg');
  4.     background-repeat: no-repeat;
  5.     background-position:center top -50px;
  6.     z-index: -1;
  7.  
  8.     background-size:cover;  
  9. }
  10. .background::before {
  11.     content: "";
  12.     position: absolute;
  13.     top: 0;
  14.     left: 0;
  15.     right: 0;
  16.     bottom: 0;
  17.     background: rgba(0, 0, 0, 0.4); /* Потъмнява фона с 50% черен цвят */
  18.     z-index: -1;
  19. }
  20. .header{
  21.     display: flex;
  22.     align-items: center;
  23.     justify-content: space-between;
  24.     font-family: "Karla", sans-serif;
  25.     padding: 2em 4em;
  26.     font-size: 1.125em;
  27.     z-index: 1111;
  28. }
  29. header img{
  30.     width: 107px;
  31.     height: auto;
  32.    
  33. }
  34. header ul{
  35.     display: flex;
  36.     align-items: center;
  37.     justify-content: center;
  38.     gap: 2em;
  39. }
  40. header ul a {
  41. color: white;
  42. z-index: 1111;
  43.  
  44. }
  45. .hero{
  46.     display: flex;
  47.     flex-direction: column;
  48.     align-items: center;
  49.     justify-content: center;
  50. }
  51. .hero h1{
  52.     /* height: 100vh; */
  53.     font-size: 5.625em;
  54.     padding-top: 3.5em;
  55.     padding-bottom: 2em;
  56.     z-index: 1111;
  57.  
  58. }
  59. .hero h4{
  60.     font-size: 1.25em;
  61.     text-align: center;
  62.     padding-bottom: 10em;
  63.     font-family: "Karla", sans-serif;
  64.     font-weight: 400;
  65.  
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement