@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');

:root {
    box-sizing: border-box;
    font-family: 'Exo 2';
    --admin-bg-color: #14141a;
    --admin-nav-bg: #1c1c25;
    --byz:rgba(172,182,191,.5);
    --mavi:#5567ff;
    --nav-bg:rgba(206, 206, 206, 0.234);
    --orange:#ff721e;
    --bg-gri:#eff3f8;
    --koyu-mavi:#455a73;
    --btn-color:#2d3e52;
    --btn-color-hover:#374d66;
    --alt-metin:#838383;
}

html,
body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth;
    font-family: 'Exo 2'; 
}

* {
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Exo 2';
}

a {
    text-decoration: none;
    color: white;
}

ul{
    list-style: none;
}
 
input{
    font-family: Arial, Helvetica, sans-serif;
}

body::-webkit-scrollbar {
    width: 5px;
    background: rgb(192, 192, 192);
}

body::-webkit-scrollbar-thumb {
    background: rgb(122, 122, 122);
}

*::-webkit-scrollbar {
    width: 5px;
    background: rgb(192, 192, 192);
}

*::-webkit-scrollbar-thumb {
    background: rgb(122, 122, 122);
}


