style.css 1.3 KB

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