@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Orbitron:wght@400..900&display=swap');

:root{
    --bg-color: #01141d;
    --color-primary: #2EDAF1;
    --color-secondary: #54595F;
    --color-text: #c2c2c2;
    --color-white: #fff;
    --primary-font-family: "Roboto";
    --secondary-font-family: "Roboto Slab";
    --text-font-family: "Orbitron", sans-serif; 
}

*{
    scroll-behavior: smooth;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--primary-font-family);
    color: #fff;
    overflow-x: hidden;
}

.header{
    width: 100%;
    background-color: var(--bg-color);
    background-image: radial-gradient(at center center, #00E1FF24 0%, #01141d 70%);
    -webkit-font-smoothing: antialiased;
}



