@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

h1{
    color: rgba(0,0,0,0.8);
    font-weight: 600;
    font-size: 3rem;
    opacity: 0.8;
}

h2,p
{
    color: rgba(0,0,0,0.8);
    font-weight: 500;
    opacity: 0.8;
}

h3
{
    color: rgba(0,0,0,0.8);
    font-weight: 600;
    opacity: 0.8;
}
ion-icon
{
    color: rgba(0,0,0,0.8);
}

main 
{
    min-height: 100vh;
    background: linear-gradient(to right top,blue,red);
    align-items: center;
    display: flex;
    justify-content: center;
}

section2
{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.row
{
    top: -50%;
    left: -10%;
    width: 100%;
    display: flex;
    position: relative;
    padding: 10px 10px;
    white-space: nowrap;
    font-size: 64px;
    transform:rotate(-30deg);
}

.row i
{
    color: rgba(0,0,0,0.5);
    transition: 1s;
    padding: 0 5px;
    user-select: none;
    cursor: default;
}

.row i:hover
{
    color: #FFD700;
    text-shadow: 0 0 120px #FFD700;
    transition: 0s;
}

.row div
{
    animation: animate1 80s linear infinite;
    animation-delay: -80s;
}

.row div:nth-child(2)
{
    animation: animate2 80s linear infinite;
    animation-delay: -40s;
}

@keyframes animate1
{
    0%
    {
        transform: translateX(100%);
}
    100%
    {
        transform: translateX(-100%);
}
}

@keyframes animate2
{
    0%
    {
        transform: translateX(0%);
}
    100%
    {
        transform: translateX(-200%);
}
}
/* SEBALIKNYA */

.row:nth-child(even)
{
    right: -10%;
    bottom: -50%
}
.row:nth-child(even) div
{
    animation: animate3 100s linear infinite;
    animation-delay: -100s;
}

.row:nth-child(even) div:nth-child(2)
{
    animation: animate4 100s linear infinite;
    animation-delay: -50s;
}

@keyframes animate3
{
    0%
    {
        transform: translateX(-100%);
}
    100%
    {
        transform: translateX(100%);
}
}

@keyframes animate4
{
    0%
    {
        transform: translateX(-200%);
}
    100%
    {
        transform: translateX(0%);
}
} 


main button
{
    visibility: hidden;
    bottom: 10%;
    left: 20%;
    border: none;
    cursor: pointer;
    z-index: 3;
}
main .glass
{
    min-height: 80vh;
    width: 60%;
    background-color: rgba(255, 255, 255, .15); 
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    box-shadow: 0 0 50px 10px rgba(0,0,0,0.1);
    z-index: 1;
    display: flex;
}
.dashboard
{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    background: rgba(255,255,255,0.3);
    padding-bottom: 0px;
    border-radius: 1rem 0rem 0rem 1rem;
    margin-bottom: 0px;
}

.link
{
    display: flex;
    margin: 2rem 0rem;
    padding: 1rem 5rem;
    align-items: center;
}

ion-icon
{
    margin-right: 1rem;
}
.link .h2
{
    padding: 0rem 2rem;
}

.pro
{
    background: linear-gradient(to left bottom,rgba(0, 0, 255, 0.5),rgba(255, 0, 0, 0.5));
    color: blue;
    padding: 0.5rem;
    border-radius: 1rem;
    position: relative;
}

.pro h2
{
    width: 40%;
    color: black;
    font-weight: 600;
}

/* GAMES SECTION */
.games
{
    /* display: flex; */
    /* flex-direction: column; */
    /* flex: 2; */
    margin: 2rem;
    justify-content: space-evenly;
}

.games h1
{
    font-family: ubuntu, sans-serif;
}

.status
{
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

.status input
{
    background: rgba(0,0,0,0.8);
    border: none;
    width: 60%;
    padding: 0.5rem;
    border-radius: 1rem;
}

.status .search
{
    color: #000;
    display: flex;
}

.search ion-icon
{
    margin-left: 1%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card
{
    display: flex;
    background: linear-gradient(to right bottom,rgba(255, 255, 255, 0.3),rgba(255, 255, 255, 0.1));
    border-radius: 1rem;
    margin: 2rem 0rem;
    padding: 2rem;
    box-shadow: 6px 6px 20px rgba(112,112,112,0.3);
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    justify-content: space-between;
}

.progress
{
    background: rgba(0,0,0,0.8);
    width: 400px;
    height: 20px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.progress::after
{
    content: '';
    left: 60%;
    width: 100%;
    height: 100%;
    background-color: rgba(236,236,236,0.5);
    position: absolute;
    border-radius: 0rem 1rem 1rem 0rem;
    -webkit-border-radius: 0rem 1;
    -moz-border-radius: 0rem 1;
    -ms-border-radius: 0rem 1;
    -o-border-radius: 0rem 1;
}

.card-info
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pdota::after
{
    left: 80%;
}
.pspiderman::after
{
    left: 60%;
}
.pml::after
{
    left: 70%;
}




.avatar
{
    margin-top: 10px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
}
.controller
{
    top: 15%;
    height: auto;
    width: 100px;
    margin-bottom: 0;
    position: absolute;
    transform: rotate(-20deg);
}

.game-icon
{
    border-radius: 15%;
    width: 15%;
    height: 10%;
    margin-right: 1rem;
}