diff --git a/src/App.css b/src/App.css index 74b5e05..e8cbbdb 100644 --- a/src/App.css +++ b/src/App.css @@ -1,31 +1,58 @@ .App { text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } + font-family: Arial, sans-serif; } .App-header { - background-color: #282c34; + background-color: #61dafb; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; - font-size: calc(10px + 2vmin); color: white; } +h2 { + font-size: 24px; + margin-bottom: 20px; + text-align: center; + color: #333; +} + +table { + width: 80%; + border-collapse: collapse; + margin: 20px auto; + background-color: white; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +table th, +table td { + padding: 10px; + text-align: left; + border-bottom: 1px solid #ddd; +} + +table th { + background-color: #f2f2f2; + font-weight: bold; +} + +tr:hover { + background-color: #f5f5f5; +} + .App-link { color: #61dafb; + text-decoration: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } } @keyframes App-logo-spin {