*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root{
    --bg : #181818;
    --txt : #FFF;
    --main: #6d6d6d;
    --sec: #444444;
}

body{
    background: var(--bg);
    background-image: url('/img/bg3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    color: var(--txt);
}
body{
    width: 100vw;
    height: 100vh;
}
.mask{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(153deg, rgba(0, 0, 0, 0.068) 0%, rgba(65, 65, 65, 0.151) 52%,rgba(24, 24, 24, 0.226)) 100%;
}
header{
    height: 10%;
    position: fixed;
    width: 98%;
    top: 1%;
    right: 1%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 28px 12% ;
    transition: all .5s ease;
    background: #000;
    border-radius: 80px;

}

.logo{
    display: flex;
    align-items: center;
}

.logo i{
    color: var(--txt);
    font-size: 28px;
    margin-right: 3px;
}

.logo span{
    color: var(--txt);
    font-size: 1.9rem;
    font-weight: 600;
}

.nav{
    display: flex;
    align-items: center;
}

.nav a{
    color: var(--txt);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 3px 0;
    margin: 0px 30px;
    transition: all .7s ease;

}

.nav a:hover{
    color: rgba(255, 255, 255, 0.5);
}

.nav a.active{
    color: black;
    font-weight: 500;
    padding: 5px 15px;
    background-color: var(--txt);
    border-radius: 30px;
}

.nav a.active:hover{
    color : rgba(0, 0, 0, 0.562);
    background-color: rgba(192, 192, 192, 0.5);
}


.main{
    display: flex;
    align-items: center;
    z-index: 1000001;
}

.main a{
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--txt);
    margin-right: 25px;
    margin-left: 10px;
    transition: all .7s ease;
}

.user{
    display: flex;
    align-items: center;
}

.user i{
    color: var(--main);
    font-size: 28px;
    margin-right: 7px;
}

.main a:hover{
    color: var(--main);
}

#menu-icon{
    font-size: 35px;
    color: var(--txt);
    cursor: pointer;
    z-index: 10001;
    display: none;
}

.inner{
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

.grid-cont{
    width: 100vm;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-rows: 12% 1fr 1%;
    grid-template-columns: 8% 1fr 8%;
    transition: all .5s ease;
}



#center{
    grid-row-start: 2;
    grid-column-start: 2;
    grid-column-end: 3;
    transition: all .5s ease;
    background: rgba(255, 255, 255, 0.267);
    border-radius: 30px;
    box-sizing: border-box;
}


.grid-cen{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-rows: 10% 1fr 30%;
    place-items: center;
}

.time-cont{
    grid-row-start: 2;
    justify-content: center;
    align-items: center;
    height: 10em;
    width: 100%;
}

#clock{
    display: flex;
    justify-content: center;
    align-items: center;
}
#time{
    font-size: 12em;
    margin: 0;
    padding: 0;
    padding-left: .1em;
    padding-right: .1em;
    font-family: 'Gajraj One', cursive;
    transition: all .5s ease;
    color: black;
}

.socials{
    grid-row-start: 3;
    display: inline;
    margin-top: 5em;
    transition: all .5s ease;
}
.socials a{
    margin-right: 30px;
    text-decoration: none;
}
.socials a:active{
    color: var(--txt);
}

.socials i{
    font-size: 2.3rem;
    text-decoration: none;
    color: black;
    transition: all .5s ease;
}
.socials #fb:hover{
    color: #0052bd;
    transition: all .5s ease;
}
.socials #yt:hover{
    color: #c90202;
    transition: all .5s ease;
}
.socials #wa{
    margin: 0;
}
.socials #wa:hover{
    color: #189747;
    transition: all .5s ease;
}








@media (max-width: 1280px){
    header{
        border-radius: 50px;
        padding: 14px 10% ;
        transition: .2s;
    }
    
    .nav a{
        padding: 5px 0;
        margin: 0px 20px;
    }
    .grid-cont{
        grid-template-columns: 5% 1fr 5%;
        transition: all .5s ease;
    }

    .inner{
        width: 100vm;
        height: 100vh;
        transition: all .5s ease;
    }
    .grid-cen{
        grid-template-rows: 30% 1fr 40%;
    }
    #time{
        font-size: 12em;
    }
    .socials{
        margin-top: 2em;
        transition: all .5s ease;
    }
}

@media (max-width: 1090px){
    #menu-icon{
        display: block;
    }

    .nav{
        position: absolute;
        top: 110%;
        right: -200%;
        width: 200px;
        height: 21vh;
        background: black;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 30px;
        transition: all .5s ease;
    }

    .nav a{
        display: block;
        margin: 15px 0;
        padding: 0px 25px;
        transition: all .5s ease;
    }
    .nav a:hover{
        color: var(--txt);
        transform: translateY(2px);
    }
    .nav a.active{
        color: var(--main);
        background: none;
    }

    .nav a.active:hover{
        color: var(--main);
        background: none;
    }
    .nav.open{
        right: 2%;
    }
    .grid-cont{
        grid-template-columns: 3% 1fr 3%;
        transition: all .5s ease;
    }
    .inner{
        width: 100vm;
        height: 100vh;
        transition: all .5s ease;
    }
    .grid-cen{
        grid-template-rows: 30% 1fr 10% 2fr;
    }
    #time{
        font-size: 7.5em;
    }
    .socials{
        margin-top: .3em;
        transition: all .5s ease;
    }
}

@media (max-width: 980px){
    
    #time{
        font-size: 5em;
    }
    .socials a{
        margin-right: 10px;
    }
    #wa{
        margin: 0;
    }
}





