style.css 413 B

123456789101112131415161718192021222324252627282930313233
  1. html {
  2. scroll-behavior: smooth;
  3. }
  4. body {
  5. background-color: grey;
  6. margin: auto;
  7. }
  8. .main_container {
  9. position: relative;
  10. width: 100%;
  11. min-height: 100vh;
  12. }
  13. .main_img {
  14. position: absolute;
  15. top: 5%;
  16. right: 5%;
  17. width: 20%;
  18. height: auto;
  19. border-radius: 50%;
  20. object-fit: cover;
  21. }
  22. h1 {
  23. color: white;
  24. text-align: center;
  25. }
  26. .welcome_text {
  27. color: white;
  28. text-align: center;
  29. }