style.css 658 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. html {
  2. scroll-behavior: smooth;
  3. }
  4. body {
  5. background-color: #121212;
  6. }
  7. .maintaince {
  8. color: white;
  9. font-size: 30px;
  10. line-height: 1.5;
  11. text-align: center;
  12. }
  13. .main_container {
  14. position: relative;
  15. width: 99%;
  16. min-height: 100vh;
  17. margin: 20px;
  18. }
  19. .main_text {
  20. position: absolute;
  21. top: 5%;
  22. left: 28%;
  23. transform: translate(-50%, -50%);
  24. text-align: left;
  25. border: 0.5px solid white;
  26. border-radius: 0px;
  27. padding: 15px;
  28. margin: 20px;
  29. color: white;
  30. }
  31. .main_img {
  32. position: absolute;
  33. top: 0%;
  34. left: 68%;
  35. width: 25%;
  36. height: auto;
  37. border-radius: 70%;
  38. object-fit: cover;
  39. }
  40. h1 {
  41. color: white;
  42. text-align: center;
  43. }