style.css 1.4 KB

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