/* * matrix-ui.css * * Copyright (c) 2023 Matrix UI Team * * Licensed under the MIT License */ :root { --primary-color: #4a148b; --secondary-color: #2e2e2e; --accent-color: #f59b6d; --background-color: #ffffff; --text-color: #000000; } body { margin: 0; font-family: Arial, sans-serif; color: var(--text-color); background-color: var(--background-color); } .navbar { background-color: var(--primary-color); color: var(--text-color); padding: 1em 2em; display: flex; justify-content: space-between; align-items: center; } .navbar .logo { font-size: 2.5rem; font-weight: bold; } .navbar .menu { list-style: none; padding: 0; display: flex; gap: 2em; } .menu li a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease; } .menu li a:hover { color: var(--accent-color); } .content { padding: 2em; max-width: 800px; margin: auto; } .button { padding: 1em 2em; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; } .button:hover { transform: scale(1.1); }