| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- html {
- scroll-behavior: smooth;
- }
- body {
- background-color: #121212;
- font-family: Arial, sans-serif;
- }
- h1 {
- color: white;
- text-align: center;
- margin: 2%;
- }
- .main_container {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- margin-left: 5%;
- margin-right: 5%;
- /*border: 0.5px solid rgb(208, 160, 236);*/
- }
- /*Container*/
- .text_container {
- position: relative;
- width: 90%;
- min-height: 70%;
- margin: 3%;
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- justify-content: flex-start;
- /*border: 0.5px solid rgb(206, 138, 138);*/
- }
- .img_container {
- margin: 3%;
- min-height: 40%;
- display: flex;
- justify-content: center;
- flex-direction: column;
- padding: 3%;
- align-items: flex-start;
- /*border: 0.5px solid rgb(138, 206, 186);*/
- }
- /*Content Classes*/
- .main_text {
- order: 0;
- padding: 15px;
- margin: 3%;
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- color: white;
- align-self: flex-start;
- }
- .main_img {
- position: static;
- width: 60%;
- height: auto;
- border-radius: 70%;
- object-fit: cover;
- /*border: 0.5px solid rgb(227, 27, 143);*/
- }
- .projects {
- order: 1;
- padding: 2%;
- margin: 3%;
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- align-self: flex-start;
- color: white;
- }
- .contacts {
- order: 2;
- padding: 2%;
- margin: 3%;
- text-align: left;
- border: 0.5px solid white;
- border-radius: 0px;
- align-self: flex-start;
- color: white;
- }
|