/*
Theme Name: Mechlar Learning
Theme URI: https://mechlar.com
Author: Mechlar
Description: Custom LMS Theme for Mechlar Learning
Version: 1.2
*/

/* CSS Variables */
:root {
    --primary: #2F2D51;
    --secondary: #F14D5D;
    --black: #000000;
    --white: #FFFFFF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
