/* Fonts */
@font-face {
    font-family: 'Horizon';
    src: url('./../rsc/fonts/Horizon.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./../rsc/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('./../rsc/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.heading {
    color: var(--sidebar-color);
    margin: 0;
    padding-bottom: 3px;
    font-size: 4vw;
    font-weight: 400;
    user-select: none;
    font-family: Horizon, 'Geneva', 'Verdana', sans-serif;
}

.subheading {
    color: var(--sidebar-color);
    margin: 0;
    padding-bottom: 3px;
    font-size: 3vw;
    font-weight: 400;
    user-select: none;
    font-family: Poppins, monospace;
    font-weight: bold;
}


.subheading::before {
    content: '[';
}

.subheading::after {
    content: ']';
}

.text {
    font-family: 'Arial';
    font-weight: normal;
    font-size: 2.13vw;
    line-height: 1.5;
    color: #251605;
}

.text-justify {
    text-align: justify;
    text-align-last: left;
}

.text-highlight {
    color: var(--sidebar-bg-color);
    background-image: linear-gradient(56deg, #5B507A, #5B618A);
    text-decoration: none;
    transition: background-image .2s;
    display: inline;
}

@media screen and (min-width: 1250px) {
    .heading {
        font-size: 50px;
    }
}

@media screen and (min-width: 1000px) {
    .subheading {
        font-size: 30px;
    }
}

@media screen and (min-width: 845px) {
    .text {
        font-size: 18px;
    }
}

@media screen and (max-width: 750px) {
    .heading {
        font-size: 30px;
    }
    .subheading  {
        font-size: 22px;
    }
    .text {
        font-size: 16px;
    }
}

* {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

html, body {
    background-color: var(--sidebar-bg-color);
    color: var(--sidebar-color);
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}