*{
    border: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
  }
  html,body{
    /* height:100%; */
    font-family: 'Roboto', sans-serif;
  }
  ::-webkit-scrollbar {width: 6px;height: 0px;}
  ::-webkit-scrollbar-thumb {background: #3D03A7;border: 0px none;}
  ::-webkit-scrollbar-thumb:hover {
  background: #111
  }
  ::-webkit-scrollbar-track {
  background: #3D03A7;
  border: none;
  }
body{
    background: linear-gradient(315deg, #3D03A7 0%, #6600CC 100%);
    min-height: 100vh;
    height: auto;
}
.wrap{
    height: 100%;
    margin: auto;
    width: 90%;
    max-width: 320px;
    margin-bottom: 100px;
}
.wrap header{
    padding-top: 40px;
    padding-bottom: 30px;
}
.wrap header div{
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 0px 5px -1px black;
}
.wrap header img{
    width: 100%;
}
.wrap header h1{
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    font-size: 30px;
}
.wrap header p{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.wrap .box{padding: 1px;margin: 1px;display: block;}
.wrap .box a{
    background: #fff;
    height: 55px;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
    transition: all .5s;
    display: block;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 5px -1px black;
}
.wrap .box a .img{
    width: 34px;
    height: 34px;
}
.wrap .box a .img img{
    width: 100%;
    display: block;
    margin: auto;
}
.wrap .box a span{
    color: #191919;
    font-weight: 600;
    padding-left: 10px;
    display: block;
}
.wrap .box.video{}
.wrap .box.video a{
    flex-wrap: wrap;
}
.wrap .box.video .img{
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    margin-top: 7px;
}
.wrap .box.video .img img{
}
.wrap .box.video span{
    width: 100%;
    padding: 2px;
    text-align: center;
    padding-top: 10px;
}
.wrap .box.video .fondo{
    position: absolute;
    top: 0;
    left: 0;
    background: #00000082;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all .5s;
    align-items: center;
    justify-content: center;
}

.wrap .box.video .fondo img{
    width: 45px;
    height: 45px;
    transition: all .02s;
}
.wrap .box.video .fondo:hover{
    background: #0000009e;
}
.wrap .box.video .fondo:hover img{
    width: 50px;
    height: 50px;
}
.wrap .box.efecto{}
.wrap .box.efecto a{
    animation:5s efecto 0.5s infinite linear;
    color: #191919;
    font-weight: 700;
}
.wrap .box.post{}
.wrap .box.post a{
    height: auto;
    flex-wrap: wrap;
    padding: 15px 20px;
}
.wrap .box.post a p{
    font-weight: 600;
    color: #191919;
    padding-bottom: 5px;
}
.wrap .box.post .img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.wrap .box.post .img img{}
.wrap .box.post span{}
@keyframes efecto{
    from{
        transform:scale3d(1, 1, 1)
    }2%,4%{
        transform:scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -1deg)
    }6%,10%,14%,18%{
        transform:scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 1deg)
    }8%,12%,8%{
        transform:scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -1deg)
    }20%,to{
        transform:scale3d(1, 1, 1)
    }
}






