style.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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: 2%;
  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. /*Container*/
  28. .text_container {
  29. position: relative;
  30. width: 90%;
  31. min-height: 70%;
  32. margin: 3%;
  33. display: flex;
  34. flex-direction: column;
  35. flex-wrap: wrap;
  36. justify-content: flex-start;
  37. /*border: 0.5px solid rgb(206, 138, 138);*/
  38. }
  39. .img_container {
  40. margin: 3%;
  41. min-height: 40%;
  42. display: flex;
  43. justify-content: center;
  44. padding: 3%;
  45. align-items: flex-start;
  46. /*border: 0.5px solid rgb(138, 206, 186);*/
  47. }
  48. /*Content Classes*/
  49. .main_text {
  50. order: 0;
  51. padding: 15px;
  52. margin: 3%;
  53. text-align: left;
  54. border: 0.5px solid white;
  55. border-radius: 0px;
  56. color: white;
  57. align-self: flex-start;
  58. }
  59. .main_img {
  60. position: static;
  61. width: 60%;
  62. height: auto;
  63. border-radius: 70%;
  64. object-fit: cover;
  65. /*border: 0.5px solid rgb(227, 27, 143);*/
  66. }
  67. .projects {
  68. order: 1;
  69. padding: 2%;
  70. margin: 3%;
  71. text-align: left;
  72. border: 0.5px solid white;
  73. border-radius: 0px;
  74. align-self: flex-start;
  75. color: white;
  76. }
  77. .contacts {
  78. order: 2;
  79. padding: 2%;
  80. margin: 3%;
  81. text-align: left;
  82. border: 0.5px solid white;
  83. border-radius: 0px;
  84. align-self: flex-start;
  85. color: white;
  86. }