@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root {
    --main-cl: #6968FC;
    --background-primary: #111318;
    --background-secondary: #0f1015;
    --background-tertiary: #1e1f24;
    --font-cl: #ffffff;
    --sub-font-cl: hsl(221, 25%, 50%);
    --glow-cl: rgba(105, 104, 252, 0.4);
    --glass-cl: linear-gradient(135deg, rgb(255, 255, 255, .05), rgb(0, 0, 0, 0));
    --border-cl: rgba(255, 255, 255, .08);
    --shadow-cl: rgba(0, 0, 0, .25);
    --navbar-cl: #181818e6;
    --green: #1DC15C;
    --red: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

html,
body {
    min-height: 100dvh;
    height: 100%;
    overflow-x: clip;
}

body {
    width: 100%;
    background-color: var(--background-primary);
    color: var(--font-cl);
    position: relative;
}

body,
button,
a {
    font-family: "Cairo", sans-serif;
    color: var(--font-cl);
    fill: var(--font-cl);
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    color: var(--font-cl);
}

main {
    padding: 64px;
}

h1 {
    font-size: 64px;
}

p {
    color: var(--sub-font-cl);
}

ul {
    list-style: none;
}

a {
    font-size: 18px;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.floating-btn-cnt {
    position: fixed;
    bottom: 64px;
    left: 64px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--background-secondary) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}