body{
    background:linear-gradient(0deg, #3d3d3d, #252525);
    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
    background-size: 100% 100%;
    color:#fff;
    min-height:100vh;
    text-align:center;
    font-family:Roboto,sans-serif;
}
 .fa, .fas {
    margin-right:5px;
}
html{
    box-sizing:border-box;
    font-size:100%
}
*,:after,:before{
    box-sizing:inherit;
}
.perfil{
    width:150px;
     margin:0;
     border-radius:150px;
}
.logo{
    height:50px;
     margin:20px 20px 0 20px;
}
a{
    border-radius:10px;
    display:block;
    max-width:400px;
    margin:0 auto 15px;
    padding:15px 20px;
    font-size:.85rem;
    color:#fff;
    border:1px solid #9cb785;
    text-decoration:none;
    transition:all .2s ease-in-out
}
.featured{
    position:relative;
    background:linear-gradient(to right,#dbd39a,#aac790);
    color:#334a2c;
    font-weight:700;
    border-color:#9cb785;
}
h2{
    font-size:26px;
    font-weight:bold;
    letter-spacing:0px
}
h3{
    font-size:16px;
    font-weight:100;
    letter-spacing:0px;
     margin-bottom:30px;
}
.channels{
    display:flex;
    max-width:400px;
    margin:0 auto
}
.channels a{
    flex:1;
    padding:10px 20px;
    margin-right:10px;
}
.channels a:last-child{
    margin-right:0
}

.backgroundgrad, a:hover {
    color:#334a2c;
    background: linear-gradient(270deg, #dbd39a, #aac790);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 100%}
    50%{background-position:100% 0%}
    100%{background-position:0% 100%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 100%}
    50%{background-position:100% 0%}
    100%{background-position:0% 100%}
}
@keyframes AnimationName {
    0%{background-position:0% 100%}
    50%{background-position:100% 0%}
    100%{background-position:0% 100%}
}