/*
Theme Name: TechRookies UI
Theme URI: https://techrookies.com
Description: Custom child theme for GeneratePress
Author: Sao Owens
Template: generatepress
Version: 1.0.0
Text Domain: techrookies-ui
*/

:root{
    --bg:#070B14;
    --surface:#101826;
    --surface-2:#162130;
    --primary:#00C8FF;
    --text:#FFFFFF;
    --muted:#AAB4C5;
    --radius:18px;
}

html{
    scroll-behavior:smooth;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:.25s ease;
}