@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: #ed2390;
    --bgColor2: #ed2390;
    --accentColor: #FFF;
    --font: 'Karla', sans-serif;
    --delay: .3s;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
    /* background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%); */
    /* background-image: url('https://bit.ly/3nFVqJh'); */
    opacity: 0;
    animation: 1s 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, #profilePicture img {
    height: 250px;
    display: block;
    margin-top: 0;
    margin: 0px auto 10px ;
    /*-webkit-tap-highlight-color: transparent; */
}

#giffWork img {
    position:relative;
    height: 190px;
    display: block;
    margin: 25px auto ;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent; 
}

#Title {
    color: var(--accentColor);
    font-size: 35px;
    font-weight:bolder;
    line-height: 0;
    display: block;
    font-family: var(--font);
    margin: 0px 10px 25px ;
    text-align: center;
    text-decoration: none;
}

#Text {
    color: var(--accentColor);
    font-size: 20px;
    font-weight:bolder;
    line-height: 1;
    display: block; 
    font-family: var(--font);
    margin: auto 25px 30px;
    text-align: center;
    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 7s linear var(--delay) infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}


/*-------------------------animations-----------------------*/
@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
}

@keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-2000px);
    }
}


