/* CSS FILE */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;400;600;900&');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200&display=swap');

/* SCROLLBAR
::-webkit-scrollbar {
    width: 1.1vw;
}
::-webkit-scrollbar-track {
    background-color: var(--that-red);
}
::-webkit-scrollbar-thumb {
    background-color: var(--that-red-brighter);
    border: 0.2vw solid var(--that-red);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--that-red-darker);
}
*/

/* BASE */
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins';
}
html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}
a {
    color: royalblue;
}
li {
    list-style: none;
}
button {
    cursor: pointer !important;
    outline: none;
    border: none;
}
#project-container {
    font-family: 'Poppins';
}
#chain-seperator {
    height: 250px;
    display: flex;
    justify-content: center;
}
#chain-seperator div {
    height: 100%;
}
#chain-seperator div:first-child, #chain-seperator div:last-child {
    width: 20px;
    /* background: var(--verylightblue); */
    animation: seperator-charge 8s infinite;
    /* border-inline: 4px outset #E4FBE6; */
    /* box-shadow: 0 0px 9px -4px black inset; */
}
#chain-seperator div:nth-child(2) {
    width: 33.33vw;
    background: none;
}

@keyframes seperator-charge {
    0% {
        background-color: rgb(248, 67, 61);
        border-inline: 4px outset rgb(248, 67, 61);
    }
    25% {
        backgorund-color: rgb(252, 198, 22);
        border-inline: 4px outset rgb(252, 198, 22);
    }
    50% {
        background-color: rgb(143, 201, 26);
        border-inline: 4px outset rgb(143, 201, 26);
    }
    75% {
        backgorund-color: rgb(252, 198, 22);
        border-inline: 4px outset rgb(252, 198, 22);
    }
    100% {
        background-color: rgb(248, 67, 61);
        border-inline: 4px outset rgb(248, 67, 61);
    }
}

/* ANIMATION */

/* @keyframes ctameddown {
    from {
        position: absolute;
        right: 30px;
        top: 40px;
    }
    to {
        position: absolute;
        right: 20px;
        top: 200px;
    }
}

@keyframes dropbtn {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(90deg);
    }
}

@keyframes dropbtnrev {
    from {
        transform: rotate(90deg);
    }
    to {
        transform: rotate(0deg);
    }
} */

/*

@keyframes ytanim {
    from {
        background-color: grey;
        box-shadow: 0 0 0px 0px rgba(23, 178, 240, 0);
    }
    to {
        background-color: red;
        box-shadow: 0 0 5px 2px red;
    }
}

@keyframes ytrev {
    from {
        background-color: red;
        box-shadow: 0 0 5px 2px red;
    }
    to {
        background-color: grey;
        box-shadow: 0 0 0px 0px rgba(2, 255, 255, 0);
    }
}

@keyframes fbanim {
    from {
        background-color: grey;
        box-shadow: 0 0 0px 0px rgba(23, 178, 240, 0);
    }
    to {
        background-color: #2b5bdf;
        box-shadow: 0 0 5px 2px #2b5bdf;
    }
}

@keyframes fbrev {
    from {
        background-color: #2b5bdf;
        box-shadow: 0 0 5px 2px #2b5bdf;
    }
    to {
        background-color: grey;
        box-shadow: 0 0 0px 0px rgba(2, 255, 255, 0);
    }
}

@keyframes instaanim {
    from {
        background-color: grey;
        box-shadow: 0 0 5px 2px rgba(253, 29, 104, 0);
    }
    to {
    background-color: rgb(253, 29, 104);
    box-shadow:0 0 5px 2px rgb(253, 29, 104);
    }
}

@keyframes instarev {
    from {
    background-color: rgb(253, 29, 104);
    box-shadow:0 0 5px 2px rgb(253, 29, 104);
}
    to {
        background-color: grey;
        box-shadow: 0 0 5px 2px rgba(253, 29, 104,0);
    }
}

@keyframes twitanim {
    from {
        background-color: grey;
        box-shadow: 0 0 5px 2px rgba(0,0,0,0);
    }
    to {
        background-color: #50ABF1;
        box-shadow: 0 0 5px 2px #50ABF1;
    }
}

@keyframes twitrev {
    from {
        background-color: #50ABF1;
        box-shadow: 0 0 5px 2px #50ABF1;
    }
    to {
        background-color: grey;
        box-shadow: 0 0 5px 2px rgba(0,0,0,0);
    }
}

@keyframes ctaanim {
    from {
        box-shadow: 0 0 5px 2px rgba(255, 123, 0, 0);
        opacity: 0.8;
    }
    to {
        opacity: 1;
        box-shadow: 0 0 5px 2px rgba(255, 123, 0, 1);
    }
}

@keyframes ctarev {
    from {
        box-shadow: 0 0 5px 2px rgba(255, 123, 0, 1);
        opacity: 1;
    }
    to {
        box-shadow: 0 0 5px 2px rgba(255, 123, 0, 0);
        opacity: 0.8;
    }
}

*/

/* library */
.text-align-left {text-align: left;}
.text-align-right {text-align: right;}


