@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

body {
    min-height: 100vh;
    font-family: var(--font);
    background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
    padding-bottom: 100px;
}

.without-footer{
    padding-bottom: 0;
}

#main {
    opacity: 0;
    animation: 1.5s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#profilePicture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

#userName {
    color: var(--accentColor);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    text-decoration: none;
}

#hashtag {
    position: relative;
    padding-bottom: 20px;
    color: var(--accentColor);
    font-size: 1rem;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;

    /*  animation   */
    overflow: hidden;
    background: linear-gradient(90deg, var(--bgColor), var(--accentColor), var(--bgColor));
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear var(--delay) infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.fs-80{
    font-size: 80px;
}

/*------------------------- animations -----------------------*/
@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate {
    0% {
        background-position: -500%;
    }
    100% {
        background-position: 500%;
    }
}

/*------------------------- custom buttons -----------------------*/
.accordion button:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    display: inline-block;
}

.accordion button.collapsed:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f077";
    display: inline-block;
}

.link-holder .btn {
    border-radius: 0;
}

.link-holder .buttons-round {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.buttons-big .link-text {
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
}

.buttons-big .link-data {
    color: #f7fcff;
}


/*------------------------- custom button styles -----------------------*/
/* TWITCH */
.btn-outline-gold {
    border-color: #ffe250;
    color: #ffe250;
}

.btn-outline-gold:hover, .btn-outline-gold:active {
    border-color: #ffe250;
    background-color: #ffe250;
    color: #252525;
}

.btn-outline-gold:focus {
    border-color: #ffe250;
    background-color: #ffe250;
    color: #252525;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 226, 80, 0.50);
}

/* TWITCH */
.btn-outline-twitch {
    border-color: #9146FF;
    color: #9146FF;
}

.btn-outline-twitch:hover, .btn-outline-twitch:active {
    border-color: #9146FF;
    background-color: #9146FF;
    color: #f7fcff;
}

.btn-outline-twitch:focus {
    border-color: #9146FF;
    background-color: #9146FF;
    color: #f7fcff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(145, 70, 255, 0.50);
}

/* TWITTER */
.btn-outline-twitter {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.btn-outline-twitter:hover, .btn-outline-twitter:active {
    background-color: #1DA1F2;
    border-color: #1DA1F2;;
    color: #f7fcff;
}

.btn-outline-twitter:focus {
    background-color: #1DA1F2;
    border-color: #1DA1F2;
    color: #f7fcff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(29, 161, 242, 0.50);
}

/* INSTA */
.btn-outline-instagram {
    border: 1px solid rgba(188, 49, 143, 1);
    border-image: linear-gradient(50deg, rgba(101, 89, 202, 1) 0%, rgba(188, 49, 143, 1) 28%, rgba(227, 63, 95, 1) 51%, rgba(247, 118, 56, 1) 81%, rgba(254, 198, 109, 1) 100%);
    border-image-slice: 1;
    color: #fafaff;
}

.btn-outline-instagram .link-text {
    background: -webkit-linear-gradient(50deg, rgba(101, 89, 202, 1) 0%, rgba(188, 49, 143, 1) 28%, rgba(227, 63, 95, 1) 51%, rgba(247, 118, 56, 1) 81%, rgba(254, 198, 109, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn.btn-outline-instagram:hover, .btn.btn-outline-instagram:active {
    background: rgb(101, 89, 202);
    background: linear-gradient(50deg, rgba(101, 89, 202, 1) 0%, rgba(188, 49, 143, 1) 28%, rgba(227, 63, 95, 1) 51%, rgba(247, 118, 56, 1) 81%, rgba(254, 198, 109, 1) 100%);
    color: #fafaff;
}

.btn-outline-instagram:focus {
    background: rgb(101, 89, 202);
    background: linear-gradient(50deg, rgba(101, 89, 202, 1) 0%, rgba(188, 49, 143, 1) 28%, rgba(227, 63, 95, 1) 51%, rgba(247, 118, 56, 1) 81%, rgba(254, 198, 109, 1) 100%);
    color: #fafaff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(254, 198, 109, 0.50);
}

.btn-outline-instagram:hover .link-text, .btn-outline-instagram:active .link-text, .btn-outline-instagram:focus .link-text {
    background: #fafaff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TIKTOK */
.btn-outline-tiktok {
    background: rgba(255, 0, 80, 0);
    border-image: linear-gradient(120deg, rgba(255, 0, 80, 1) 0%, rgba(0, 242, 234, 1) 100%);
    border-image-slice: 1;
    color: #fafaff;
}

.btn-outline-tiktok .link-text {
    background: -webkit-linear-gradient(311deg, rgba(255, 0, 80, 1) 0%, rgba(0, 242, 234, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-tiktok:hover, .btn-outline-tiktok:active {
    background: rgb(255, 0, 80);
    background: linear-gradient(120deg, rgba(255, 0, 80, 1) 0%, rgba(0, 242, 234, 1) 100%);
    color: #fafaff;
}

.btn-outline-tiktok:focus {
    background: rgb(255, 0, 80);
    background: linear-gradient(120deg, rgba(255, 0, 80, 1) 0%, rgba(0, 242, 234, 1) 100%);
    color: #fafaff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 242, 234, 0.50);
}

.btn-outline-tiktok:hover .link-text, .btn-outline-tiktok:active .link-text, .btn-outline-tiktok:focus .link-text {
    background: #fafaff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
