styles.css 640 B

123456789101112131415161718192021222324252627282930313233
  1. table {
  2. margin-bottom: 20px;
  3. border: 1px solid #2e2e2e;
  4. border-collapse: collapse;
  5. }
  6. table th {
  7. font-weight: normal;
  8. text-align: center;
  9. border: 1px solid #2e2e2e;
  10. padding: 5px;
  11. }
  12. table td {
  13. font-weight: normal;
  14. text-align: center;
  15. border: 1px solid #2e2e2e;
  16. padding: 5px;
  17. }
  18. button {
  19. text-decoration: none;
  20. display: inline-block;
  21. border-radius: 45px;
  22. font-family: "Montserrat", sans-serif;
  23. font-size: 11px;
  24. text-transform: uppercase;
  25. text-align: center;
  26. letter-spacing: 3px;
  27. font-weight: 600;
  28. color: #524f4e;
  29. background: white;
  30. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  31. transition: 0.3s;
  32. }