| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- html {
- scroll-behavior: smooth;
- }
- body {
- background-color: #121212;
- font-family: Arial, sans-serif;
-
- }
- h1 {
- color: white;
- text-align: center;
- }
- .maintaince {
- color: white;
- font-size: 25px;
- line-height: 1.5;
- text-align: center;
- }
- .main_container {
- display: flex;
- flex-direction: row;
- /*border: 0.5px solid rgb(208, 160, 236);*/
- }
- .text_container {
- position: relative;
- width: 90%;
- min-height: 70%;
- margin: 20px;
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- justify-content: flex-start;
- /*border: 0.5px solid rgb(206, 138, 138);*/
- }
- .img_container {
- margin: 20px;
- min-height: 40%;
- /*border: 0.5px solid rgb(138, 206, 186);*/
- }
- .main_text {
- order: 1;
- padding: 15px;
- margin: 20px;
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- color: white;
- align-self: flex-start;
- }
- .main_img {
- position: static;
- width: 50%;
- height: auto;
- border-radius: 70%;
- object-fit: cover;
- }
- .contacts {
- order: 2;
- padding: 15px;
- margin: 20px;
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- align-self: flex-start;
- color: white;
- }
|