all.css 700 B

1234567891011121314151617181920212223242526272829303132333435
  1. * { font-family: "Poppins", "Montserrat", "Roboto", "Arial"; outline: none; }
  2. body {
  3. position: fixed;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. z-index:-1;
  9. background-color: #000;
  10. color: rgb(252, 230, 205);
  11. }
  12. button {
  13. padding: 5px 10px;
  14. background-color: transparent;
  15. border: none;
  16. color: #993000;
  17. font-size: 40px;
  18. font-weight: bold;
  19. user-select: none;
  20. cursor: pointer;
  21. transition: all 0.5s;
  22. }
  23. button:hover {
  24. color: #bb1c00;
  25. margin-left: 10px;
  26. }
  27. .flex-container {
  28. width: 100%;
  29. box-sizing: border-box;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. justify-content: center;
  34. }