/*
Theme Name: Playbyte
Theme URI: https://playbyte.in/
Author: Playbyte Team
Author URI: https://playbyte.in/
Description: Custom, highly optimized, and accessible WordPress theme for Playbyte.in. Built without jQuery or heavy page builders.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: playbyte
*/

:root {
	--primary-color: #000000;
	--secondary-color: #ffffff;
	--text-color: #333333;
	--background-color: #f5f5f5;
	--link-color: #007bff;
}

/* Base Resets */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
}