| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- html {
- scroll-behavior: smooth;
- }
- body {
- background-color: grey;
- margin: auto;
- border: 50px solid black;
- }
- .main_container {
- position: relative;
- width: 100%;
- min-height: 100vh;
- color: white;
- margin: 20px;
- }
- .main_text {
- position: absolute;
- top: 5%;
- left: 30%;
- transform: translate(50%, 50%);
- text-align: left;
- border: 0.5px solid white;
- margin: 20px;
- }
- .main_img {
- position: absolute;
- top: 5%;
- right: 5%;
- width: 20%;
- height: auto;
- border-radius: 70%;
- object-fit: cover;
- }
- h1 {
- color: white;
- text-align: center;
- }
- .welcome_text {
- color: white;
- text-align: center;
- }
|