style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  2. .container {
  3. width: 1140px;
  4. margin: 0 auto;
  5. }
  6. h1{
  7. font-family: "Playfair Display", serif;
  8. font-size: 64px;
  9. }
  10. h1+p{
  11. font-family: "Roboto", sans-serif;
  12. font-weight: 300;
  13. font-size: 36px;
  14. }
  15. li, p, button{
  16. font-family: "Roboto", sans-serif;
  17. font-weight: 300;
  18. font-size: 24px;
  19. }
  20. h1, p{
  21. margin: 0;
  22. }
  23. h1{
  24. margin-bottom: 20px;
  25. }
  26. section {
  27. margin-bottom: 100px;
  28. }
  29. .nav_item
  30. {list-style: none;
  31. margin-left: 60px;
  32. }
  33. a{
  34. text-decoration: none;
  35. color: black;
  36. }
  37. ul{
  38. display: flex;
  39. }
  40. .header{
  41. display: flex ;
  42. justify-content: space-between;
  43. align-items: center;
  44. }
  45. button{
  46. padding: 20px 30px;
  47. border: 1px solid black;
  48. background-color: rgba(255, 255, 255, 0);
  49. color: black;
  50. margin-top: 30px;
  51. }
  52. button:hover{
  53. background-color: black;
  54. color: white;
  55. transition: 1s;
  56. }
  57. .cover{
  58. height: 80vh;
  59. display: flex;
  60. align-items: center;
  61. }
  62. #cover{
  63. background-repeat: no-repeat;
  64. background-size: cover;
  65. }
  66. .us{
  67. display:flex;
  68. align-items: center;
  69. }
  70. .content{
  71. margin-left: 70px;
  72. }
  73. h2{
  74. font-size: 48px;
  75. }
  76. .card_d{
  77. display: flex;
  78. justify-content: space-between;
  79. width: 100%;
  80. }
  81. .cards{
  82. display: flex;
  83. flex-wrap: wrap;
  84. justify-content: space-between;
  85. }
  86. .card{
  87. width: 300px;
  88. margin-bottom: 60px;
  89. }
  90. .guide_content{
  91. height: 40vh;
  92. }
  93. .guide_content{
  94. display: flex;
  95. align-items: center;
  96. }
  97. input{
  98. height: 30px;
  99. width: 240px;
  100. }
  101. .blocks{
  102. display: flex;
  103. flex-wrap: wrap;
  104. justify-content: space-between;
  105. }
  106. .block{
  107. margin-bottom: 60px;
  108. }
  109. .block_d:h2{
  110. margin: 0px;
  111. }
  112. #svaz{
  113. margin: 0;
  114. }
  115. .svaz1{
  116. height: 52vh;
  117. display: flex;
  118. justify-content: flex-end;
  119. align-items: center;
  120. }
  121. .svaz_txt{
  122. width: 650px;
  123. }
  124. footer{
  125. display: flex;
  126. flex-direction: column;
  127. justify-content: center;
  128. align-items: center;
  129. }