:root {
    --backcard: #171941;
    --backcard2: rgba(219, 232, 248, 0.3);
    --backcard3: rgba(219, 232, 248, 0.3);
    --back1: #e3d5cc;
    --back2: #a1bddb;
    --mtext: #083242;
    --like: #F02D3A;
    --my-blue: #1F5673;
    --my-grey: #c4c4c4;
    --primary: rgba(12, 81, 171, 0.2);
    --colibri: rgb(250, 200, 0);
    --other: rgba(255, 2, 170, 0.7);
}

/*
:root {
    --backcard: #f2f5fa;
    --backcard2: #0f7bb2;
    --back1: #086faa;
    --back2: #000c18;
    --mtext: #efe8dd;
}
*/
div, span {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

html, body {
    background: var(--backcard);
    background: url("../images/wall/13.png");
    background-position: center;
    /*  background: linear-gradient(0deg, var(--back1) 0%, var(--back2) 100%);*/
    height: 100%;
    color: var(--mtext);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1em;
    padding: 0px;
}

.fs-text1 {
    font-size: 0.8em;
}

.fs-text2 {
    font-size: 1.2em;
}

.fs-text3 {
    font-size: 1.8em;
    line-height: 1.1em;
}

.fs-text4 {
    font-size: 2em;
    line-height: 1.1em;
}

.fs-text6 {
    font-size: 3.2em;
    line-height: 1.1em;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--back1);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--backcard);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--mtext);
}

.love {
    display: inline-block;
    position: absolute;
    font-size: 2em;
    color: rgba(231, 76, 60, 0.8);
    bottom: -30px;
    transform: scale(.9);
    animation: love .5s infinite linear alternate-reverse, love2 10s linear, love3 .5s infinite cubic-bezier(0.42, 0.0, 0.58, 1.0) alternate-reverse;
    z-index: 2;
}

@keyframes love {
    to {
        transform: scale(1.5);

    }
}

@keyframes love2 {
    to {
        bottom: 120vh;
    }
}

@keyframes love3 {
    to {
        transform: translateX(20px);

    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);

    }

    70% {
        transform: scale(4);

    }

    100% {
        transform: scale(0.95);

    }
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes diamon-pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(35, 204, 204, 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

