style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. html {
  2. scroll-behavior: smooth;
  3. }
  4. body {
  5. background-color: #121212;
  6. font-family: Arial, sans-serif;
  7. }
  8. h1 {
  9. color: white;
  10. text-align: center;
  11. margin: 3%;
  12. }
  13. .maintaince {
  14. color: white;
  15. font-size: 140%;
  16. line-height: 1.5;
  17. text-align: center;
  18. }
  19. .main_container {
  20. display: flex;
  21. flex-direction: row;
  22. flex-wrap: nowrap;
  23. margin-left: 12%;
  24. margin-right: 4%;
  25. /*border: 0.5px solid rgb(208, 160, 236);*/
  26. }
  27. .text_container {
  28. position: relative;
  29. width: 90%;
  30. min-height: 70%;
  31. margin: 3%;
  32. display: flex;
  33. flex-direction: column;
  34. flex-wrap: wrap;
  35. justify-content: flex-start;
  36. /*border: 0.5px solid rgb(206, 138, 138);*/
  37. }
  38. .img_container {
  39. margin: 3%;
  40. min-height: 40%;
  41. display: flex;
  42. justify-content: center;
  43. padding: 3%;
  44. align-items: flex-start;
  45. /*border: 0.5px solid rgb(138, 206, 186);*/
  46. }
  47. .main_text {
  48. order: 1;
  49. padding: 15px;
  50. margin: 3%;
  51. text-align: left;
  52. border: 0.5px solid white;
  53. border-radius: 0px;
  54. color: white;
  55. align-self: flex-start;
  56. }
  57. .main_img {
  58. position: static;
  59. width: 60%;
  60. height: auto;
  61. border-radius: 70%;
  62. object-fit: cover;
  63. /*border: 0.5px solid rgb(227, 27, 143);*/
  64. }
  65. .contacts {
  66. order: 2;
  67. padding: 2%;
  68. margin: 3%;
  69. text-align: left;
  70. border: 0.5px solid white;
  71. border-radius: 0px;
  72. align-self: flex-start;
  73. color: white;
  74. }