@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --white: #FFF;
    --white2: #adb0bc;

    --pink1: #d10ed1;
    --pink2: rgb(248, 108, 248);

    --blue1: rgb(16, 163, 218);
    --blue2: rgb(100, 206, 245);
    --blue3: #157287;

    --black1: #000000;
    --black2: #182029;
    --purple1: #090823;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(1, 2, 8);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

a {
    color: initial;
    text-decoration: none;
}

button,
input,
textarea {
    color: white;
    background-color: #000;
    border: none;
    outline: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
}


