:root {
    --grey-color: rgba(224, 231, 255, 0.75);
    --white-color: rgb(224, 231, 255);
    #--highlight: #b60f67;
    --highlight: #0dcaf0;
    #--highlight: #f1dd35;
    --highlight-dark: #1187a1;

    #--highlight-dark: #940859;
}

code {
    color: var(--highlight);
}

html {
    #background: rgb(63, 85, 136);
    #background: radial-gradient(circle, rgba(63, 85, 136, 1) 0%, rgba(15, 23, 42, 1) 100%);

    background: rgb(46, 64, 106);
    background: radial-gradient(circle, rgba(46, 64, 106, 1) 0%, rgba(15, 23, 42, 1) 100%);
}

.grey-color {
    color: var(--grey-color) !important;
}

.highlight {
    color: var(--highlight) !important;;
}

.white-color {
    color: var(--white-color) !important;
}

body {
    background: unset;
    color: rgb(224, 231, 255);

    font-family: Graphik, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


header {
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 3rem;
}

h1 {
    color: var(--white-color) !important;
    font-size: 50px;
    margin-bottom: 2rem;

    &.big {
        font-size: 70px;
    }
}

.ts {
    background: url("imgs/ts.svg");
    width: 30px;
}


h2,.h2 {
    font-size: 40px !important;
}

h3 {
    font-size: 30px;
    color: var(--grey-color);
}


.download-link {
    font-size: 30px;
}

.bi {
    color: var(--highlight) !important;
    font-size: 60px;
}

hr {
    margin-top: 4rem;
    margin-bottom: 4rem;
}


.img-fluid {
    border-radius: 10px;
}

.features {

    div {
        h3 {
            font-size: 35px;
        }

        p {
            font-size: 25px;
        }
    }
}


