:root {
    --primary: #111B54;
    --dark: #0b0b0b;
    --dark_inter: #36373a;
    --light: #ffffff;
    --grey: rgb(132, 132, 132);
    --nbar: #0f0f0f;
    --link: #2896d1;
    --title: #e7e7e7;
    --text: rgb(201, 199, 199);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding-right: 30px;
    margin-top: 50px;
    margin-left: 30px;
    margin-left: 30px;
    color: var(--text);
    letter-spacing: 0.01em;
    background-color: var(--dark);
}

.title {
    color: var(--title) !important;
    text-align: center
}

a {
    text-decoration: none;
    color: var(--link);
    font-size: 18px !important;
}


.link-zoom:hover {
    font-size: 36px !important;
}

p {
    text-align: justify;
}

.important {
    width: 80%;
    text-align: center;
    margin-top: 40px;
    margin-left: 80px;
    color: crimson;
    size: 22px;
}

/* Button Back to Top */

.box {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.top {
    padding: 10px;
    color: var(--text);
    background: #414141;
    border-radius: 100px;
    white-space: nowrap;
}

.row {
    display: flex;
    height: 100%;
    align-items: center;
}

.col {
    flex-basis: 100%;
}

.card {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    /* background-image: url(/assets/images/content/vscode/vscode_extensions.png); */
    background-position: center;
    background-size: cover;
}

.card1 {
    background-image: url(/assets/qr/binance.jpeg);
}

/* End */

/*Load ring*/

#load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 99999;
}

.lds-dual-ring {
    position: absolute;
    top: 25%;
    left: 50%;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    /* width: 46px; */
    /* height: 46px; */
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring .5s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}