@font-face {
    font-family: 'Bahnschrift';
    src: url(../fonts/bahnschrift.ttf);
}


:root {
    /* colors */
    --primary-color: #8750f7;
    --secondary-color: #ff9500;
    --tertiary-color: #2a1454;

    /* text */
    --primary-text-color: #e5e5e5;
    --secondary-text-color: #b1a7a6;

    /* background */
    --primary-background-color: #06080d;
    --secondary-background-color: #0f0715;

    /* border */
    --primary-border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bahnschrift", sans-serif;
    border: none;
    background: none;
    outline: none;
    text-decoration: none;
    transition: .5s all ease-in-out;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    overflow: hidden;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 0;
    height: .5rem;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.blob::before {
    content: "";
    position: absolute;
    top: var(--blob-top);
    left: var(--blob-left);
    width: 322px;
    height: 308px;
    border-radius: 50%;
    background: var(--blob-color);
    background: -o-linear-gradient(190deg, var(--blob-color) 0%, rgba(115, 67, 210, 0) 100%);
    background: linear-gradient(260deg, var(--blob-color) 0%, rgba(115, 67, 210, 0) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    z-index: -1;
}

.hero-title {
    color: var(--primary-color);
    margin: .8rem 0;
    font-size: 50px;
    text-transform: capitalize;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: var(--secondary-color);
    margin: .8rem 0;
    font-size: 30px;
    text-transform: capitalize;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    color: var(--secondary-text-color);
    word-spacing: .2rem;
    line-height: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    margin: .8rem auto;
}