| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- html {
- scroll-behavior: smooth;
- }
- body {
- background-color: #121212;
- }
- .maintaince {
- color: white;
- font-size: 30px;
- line-height: 1.5;
- text-align: center;
- }
- .main_container {
- position: relative;
- width: 99%;
- min-height: 100vh;
- margin: 20px;
- }
- .main_text {
- position: absolute;
- top: 5%;
- left: 28%;
- transform: translate(-50%, -50%);
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- padding: 15px;
- margin: 20px;
- color: white;
- }
- .main_img {
- position: absolute;
- top: 0%;
- left: 68%;
- width: 25%;
- height: auto;
- border-radius: 70%;
- object-fit: cover;
- }
- h1 {
- color: white;
- text-align: center;
- }
|