/* ==========================================
   GANITHA GURA LMS V1.0
   Global Styles
========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Sans+Sinhala:wght@400;500;600;700&display=swap');

/* Reset */

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

/* Body */

body{

    font-family:var(--font-primary);

    background:var(--background);

    color:var(--text);

    line-height:1.6;

}

/* Links */

a{

    text-decoration:none;

    color:inherit;

}

/* Images */

img{

    max-width:100%;

    display:block;

}

/* Buttons */

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

}

/* Inputs */

input,
select,
textarea{

    font-family:inherit;

    outline:none;

}

/* Lists */

ul{

    list-style:none;

}