@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: #202529;
    --bgColor2: #000;
    --accentColor: #fff;
    --font: 'Karla', sans-serif;
    --delay: .3s;
}

body {
    margin: 0;
    padding: 0;
    height:100%;
    font-family: var(--font);
    /* background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%) no-repeat center center fixed; */
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    
    background-color:#000;
    background: url('images/links-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover; 
}

.icons {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.icons:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-tiktok {
  background: #000;
  color: white;
}

.fa-envelope {
  background: #007dc6;
  color: white;
}

.fa-square-snapchat {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}


.profile a {
    text-decoration: none;
}

.profile img {
    position: relative;
    width: 96px;
    height: 96px;
    display: block;
    margin: 40px auto 20px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.profile .userName {
    color: var(--accentColor);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width:100%;
    text-align: center;
    text-decoration: none;
}

.links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 15px auto;
}

.links .link {
    min-height: 35px;
    border-radius: 31px!important;
    position: relative;
    background-color: transparent;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.links .link .link-image {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.links .link .link-text {
    padding-top:5px;
    font-weight:bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .links .link .link-text {
        padding-top:8px;
        font-size: 15px;
        margin-left:30px;
    }
}

@media (hover: hover) {
    .links .link:hover {
        background-color: var(--accentColor);
        color: var(--bgColor);
    }
}

.links .link:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}

.socials {
    margin-top:25px;
    max-width: 675px;
    width: auto;
    display: block;
    margin: 15px auto;
    text-align:center;
}

.support {
    margin-top:25px;
    max-width: 675px;
    width: auto;
    display: block;
    margin: 15px auto;
    text-align:center;
}

.support .header {
    color: var(--accentColor);
    font-size: 2rem;
    margin-bottom:10px;
    text-align:center;
}

.support .link {
    display: block;
    position: relative;
    float: left;
    margin-bottom:25px;
    width:100%;
}

.support .link img {
    max-width: 130px;
    margin: auto;
    display: block;
}

.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);
}


/*-------------------------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);
    }
}