Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #202124;
+ --background-color: #ffffff;
+ --text-color: #202124;
+ --animation-duration: 0.3s;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 4rem;
+ }
+
+ h1 {
+ font-size: clamp(2rem, 5vw, 3.5rem);
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ section {
+ margin: 4rem 0;
+ padding: 2rem;
+ border-radius: 8px;
+ background-color: #f8f9fa;
+ }
+
+ h2 {
+ font-size: clamp(1.5rem, 3vw, 2rem);
+ margin-bottom: 1.5rem;
+ color: var(--secondary-color);
+ }
+
+ .animation-box {
+ width: 100px;
+ height: 100px;
+ background-color: var(--primary-color);
+ border-radius: 8px;
+ animation: rotate 2s infinite ease-in-out;
+ }
+
+ @keyframes rotate {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ .grid-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 1rem;
+ }
+
+ .grid-item {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ border-radius: 8px;
+ transition: transform var(--animation-duration) ease;
+ }
+
+ .grid-item:hover {
+ transform: scale(1.05);
+ }
+
+ button {
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 0.75rem 1.5rem;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background-color var(--animation-duration) ease;
+ }
+
+ button:hover {
+ background-color: #1557b0;
+ }
+
+ footer {
+ margin-top: 4rem;
+ text-align: center;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ flex-wrap: wrap;
+ }
+
+ footer a {
+ color: var(--primary-color);
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: background-color var(--animation-duration) ease;
+ }
+
+ footer a:hover {
+ background-color: #e8f0fe;
+ }
+
+ @media (max-width: 768px) {
+ body {
+ padding: 1rem;
+ }
+
+ section {
+ padding: 1rem;
+ }
+ }