main.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. main, html {
  2. background-color: #dcb495;
  3. }
  4. .header_block {
  5. width: 100%;
  6. height: 75vw;
  7. background-position: center;
  8. display: flex;
  9. justify-content: center;
  10. flex-direction: column;
  11. background: linear-gradient( rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85) ), url(../images/back_main_one.jpg);background-repeat: repeat; background-position: center;
  12. }
  13. .header_title {
  14. margin-left: 10%;
  15. color: #ffffff;
  16. font: bold;
  17. font-size: 4vw;
  18. transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
  19. }
  20. .header_title:hover {
  21. font-size: 4.05vw;
  22. text-shadow: 0px 0px 20px #ffffff;
  23. }
  24. .header_title_2 {
  25. margin-left: 10%;
  26. color: #afafaf;
  27. font: bold;
  28. font-size: 2vw;
  29. transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
  30. }
  31. .header_title_2:hover {
  32. font-size: 2.05vw;
  33. text-shadow: 0px 0px 20px #ffffff;
  34. }
  35. .header_buttons {
  36. margin-top: 5%;
  37. margin-left: 10%;
  38. width: 90%;
  39. display: flex;
  40. justify-content: flex-start;
  41. align-items: center;
  42. }
  43. .header_button {
  44. background-color: #f5c99f;
  45. width: 20vw;
  46. height: 5vw;
  47. color: #000000;
  48. border-radius: 30px;
  49. vertical-align: middle;
  50. }
  51. #link_to_about {
  52. margin-left: 40px;
  53. background-color: #000000;
  54. color: #ffffff;
  55. border: 2px solid #ffffff;
  56. }
  57. .header_button_text {
  58. width: 100%;
  59. height: 100%;
  60. text-align: center;
  61. font-size: 1.5vw;
  62. margin-top: 5%;
  63. }
  64. .body_block {
  65. background-color: #dcb495;
  66. }
  67. .about_block {
  68. margin-top: 10%;
  69. margin-left: 5%;
  70. width: 90%;
  71. }
  72. .about_title {
  73. color: #000000;
  74. font-size: 4vw;
  75. }
  76. .about_info_block {
  77. margin-top: 50px;
  78. width: 100%;
  79. display: inline-flex;
  80. justify-content: space-between;
  81. }
  82. .about_article_block {
  83. display: flex;
  84. flex-direction: column;
  85. align-content: space-around;
  86. }
  87. .about_article {
  88. display: inline-flex;
  89. justify-content: flex-start;
  90. align-items: center;
  91. }
  92. .article_image {
  93. width: 10vw;
  94. height: 10vw;
  95. }
  96. .main_image {
  97. width: 40vw;
  98. height: 26vw;
  99. }
  100. .article_text {
  101. max-width: 70%;
  102. margin-left: 10px;
  103. font-size: 1.3vw;
  104. }
  105. .how_work_block {
  106. margin-top: 20%;
  107. margin-left: 5%;
  108. width: 90%;
  109. }
  110. .how_work_title {
  111. text-align: center;
  112. color: #000000;
  113. font-size: 4vw;
  114. }
  115. .how_work_info_block {
  116. display: inline-flex;
  117. justify-content: space-evenly;
  118. margin-top: 100px;
  119. }
  120. .how_work_image {
  121. width: 10vw;
  122. height: 10vw;
  123. }
  124. .how_work_info, .how_work_article {
  125. display: flex;
  126. flex-direction: column;
  127. align-items: center;
  128. justify-content: center;
  129. }
  130. .how_work_article_title {
  131. text-align: center;
  132. font-size: 1.5vw;
  133. }
  134. .how_work_article_text {
  135. text-align: center;
  136. margin-top: 1vw;
  137. font-size: 1.1vw;
  138. }
  139. .reg_block {
  140. margin-top: 20%;
  141. margin-left: 5%;
  142. width: 90%;
  143. height: 50vw;
  144. }
  145. .reg_content_block {
  146. margin-top: 100px;
  147. width: 100%;
  148. display: inline-flex;
  149. justify-content: space-between;
  150. flex-wrap: nowrap;
  151. align-content: center;
  152. }
  153. .reg_title {
  154. text-align: center;
  155. color: #000000;
  156. font-size: 4vw;
  157. }
  158. .reg_content {
  159. display: flex;
  160. flex-direction: column;
  161. align-self: center;
  162. align-content: space-evenly;
  163. }
  164. .reg_button_group {
  165. display: flex;
  166. justify-content: flex-start;
  167. align-items: center;
  168. }
  169. .reg_button_title {
  170. margin-bottom: 10%;
  171. color: #000000;
  172. font-size: 2.5vw;
  173. text-align: left;
  174. }
  175. .reg_button_info {
  176. margin-top: 8%;
  177. }
  178. .reg_button_group {
  179. width: 100%;
  180. display: flex;
  181. justify-content: space-between;
  182. align-items: center;
  183. }
  184. .reg_button {
  185. background-color: #a8886f;
  186. width: 18vw;
  187. height: 5vw;
  188. color: #ffffff;
  189. border-radius: 30px;
  190. vertical-align: middle;
  191. }
  192. .reg_button_text {
  193. width: 100%;
  194. height: 100%;
  195. text-align: center;
  196. font-size: 1.5vw;
  197. margin-top: 6%;
  198. }
  199. #link_to_start{
  200. background-color:#f5d3b8;
  201. }
  202. #link_to_start_text {
  203. color: #000000;
  204. }
  205. .feedback_block {
  206. display: flex;
  207. justify-content: center;
  208. align-items: center;
  209. height: 75vw;
  210. background: linear-gradient( rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85) ), url(../images/back_main_two.jpg);background-repeat: repeat; background-position: center;
  211. }
  212. .feedback {
  213. width: 50%;
  214. height: 80%;
  215. margin-left: 25%;
  216. margin-right: 25%;
  217. background-color: #dcb495;
  218. display: flex;
  219. flex-direction: column;
  220. justify-content: center;
  221. align-items: center;
  222. align-content: space-around;
  223. }
  224. .feedback_title {
  225. width: 80%;
  226. margin-bottom: 20%;
  227. text-align: center;
  228. color: #000000;
  229. font-size: 3vw;
  230. }
  231. .feedback_logo {
  232. margin-bottom: 20%;
  233. width: 10vw;
  234. height: 10vw;
  235. }
  236. .feedback_mail {
  237. font-size: 1.5vw;
  238. color: #000000;
  239. }