            @import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css?family=Monda&display=swap');
@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Changa&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap');
@-webkit-keyframes slidein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* all main settings */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(200deg,#429ef5,40%,#152e73);
}

::-webkit-scrollbar-thumb {
    background: #fff;
}

/* HTML main settings */
html{
    font-family:"Roboto Cn", sans-serif;
    animation-duration: 4s;
    animation-name: slidein;
}

body{
    background: linear-gradient(200deg,#429ef5,40%,#152e73);
}

div img{
    display: none;
}

.dm{
    font-family: 'Anton', sans-serif;
}

/* main */
#main{
    display: flex;
    flex-flow: row wrap;
    max-width: 100%;
    height: 100vh;
}

#main #bym12off{
    opacity: 0;
}

#main #loadbar{
    width: 1px;
    height: 5px;
    animation: load 5s forwards;
    background: #42f5b9;
    position: fixed;
    opacity: 1;
    transition: all .4s;
}

@-webkit-keyframes load{
    100%{
        width: 100%;
    }
}

#main .header{
    display: flex;
    order: 1;
    justify-content: flex-end;
    position: relative;
    width: 90%;
    max-height: 10vh;
}

/* nav bar */
#main .header nav{
    width: 100%;
    min-height: 10vh;
}

#main .header nav ul{
    list-style: none;
}

#main .header nav ul li{
    display: inline-block;
    margin-left: 2vw;
    font-size: .75vw;
    font-weight: 200;
    margin-top: 5vh;
    background: none;
}

#main .header nav ul li a{
    text-decoration: none;
    color: #fff;
    opacity: .8;
}

#main .header nav ul li .nav_bars{
    display: block;
}

#main .header nav ul li .nav_bars:hover{
    opacity: 1;
}

#main .header nav ul li a h1{
    margin-right: 10vw;
    font-weight: 300;
    letter-spacing: 0vw;
    background: none;
    font-size: 1.7vw;
}

#main .header #mnav{
    display: none;
}

#main .header nav ul li #mnavon{
    display: none;
}

#main .header nav ul li #mainpage{
    color: aqua;
}

#main .by:hover{
    font-size: 1vw;
    margin-right: -1vw;
}


/* nav bar end */


/* center logo */
#main .centerlogo{
    order: 3;
    color: #f9f9f9;
    width: 100%;
    height: 40%;
    margin-top: -50vh;
    font-size: 2vw;
}

#main .centerlogo h1{
    font-weight: normal;
    font-family: 'Anton', sans-serif;
    margin-top: 38vh;
    animation: center_logo_start 2s forwards;
    width: 20vw;
    height: 5vw;
    transition: all .7s;
    cursor: pointer;
    margin-left: -1vw;
}

#main .centerlogo h1:hover{
    font-size: 3vw;
}

#main .centerlogo #clock{
    margin-top: -40vh;
    font-size: 2vw;
    margin-left: 70%;
    color: #fff;
    font-family: 'Changa', sans-serif;
}

@-webkit-keyframes center_logo_start{
    from{
        opacity: 0;
        margin-top: 55vh;
    }
    to{
        opacity: 1;
        margin-top: 38vh;
    }
}

@-webkit-keyframes notfound{
    from{
        opacity: 0;
        margin-top: 36vh;
    }
    to{
        opacity: 1;
        margin-top: 24vh;
    }
}

#main #indm{
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(255,255,255,.9);
    display: none;
}

#main #indm h1{
    font-size: 3vw;
    cursor: pointer;
}

#main #indm .sub{
    font-weight: 100;
    font-size: 2vh;
}

#main #indm .dmp{
    margin-top: 20vh;
    margin-left: 30vw;
}

#main #indm .dmpp{
    font-family: 'Lobster', cursive;
}

#main #indm .dinem{
    margin-top: 38vh;
    margin-left: 35vw;
    font-weight: 100;
}

#main #indm .fme{
    margin-top: -32vh;
    margin-left: 60vw;
    text-decoration: line-through;
}

#main #indm .web{
    margin-left: 50vw;
    margin-top: -32vh;
    font-weight: 100;
    text-decoration: line-through;
}

#main #indm .gtg{
    margin-top: 53vh;
    margin-left: 50vw;
}

#main #indm .dmenc{
    margin-top: -35vh;
    margin-left: 30vw;
    text-decoration: line-through;
}

#main #indm .indmoff{
    font-weight: 100;
    float: right;
    margin-right: 3vw;
    margin-top: -60vh;
    font-size: 7vh;
    cursor: pointer;
}
/* centerlogo end */

/* contact */
#main #contact{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.9);
    z-index: 3;
    color: #fff;
    opacity: 0;
}

#main #contact h1{
    font-size: 3vh;
}

#main #contact h4{
    margin-top: 45vh;
}

#main #contact #ch{
    color: white;
    font-size: 3vw;
    float: right;
    margin-right: 1vw;
    cursor: pointer;
    margin-top: -60vh;
}

#main .contacton{
    animation: contacton 1s forwards;
}

@keyframes contacton{
    to{
        opacity: 1;
    }
}
/* contact end */

.footer{
    height: 20vh;
    background: #000;
}

.footer h1{
    color: white;
    font-weight: 100;
    font-size: 2vh;
}

/*************


    #main2


*****************/
#main2{
    min-width: 100%;
    height: 200vh;
}

#main2 #shortabout{
    color: #fff;
    font-size: 3vh;
    margin-top: 10vh;
    height: 60vh;
}

#main2 #shortabout h1{
    font-weight: 100;
    line-height: 8vh;
}

#main2 #members{
    text-align: center;
    color: #fff;
    font-size: 3vh;
    margin-top: 30vh;
}

#main2 #members h1{
    font-weight: 400;
}

#main2 #members figure{
    display: inline-block;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 10vh;
}

#main2 #members figure img{
    display: inline-block;
    width: 5vw;
    height: 5vw;
    border-radius: 100%;
    cursor: pointer;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(25%);
    }
}



/************

    mobile

*************/
@media (max-width: 500px){
    .footer h1{
        font-size: 1vh;
    }

    #main .header nav ul li a h1{
        font-size: 30px;
        min-width: 80vw;
        height: 5vh;
        margin-left: 7vw;
        text-align: center;
    }

    #main .centerlogo h1{
        font-size: 10vh;
        width: 50vw;
        margin-left: 10vw;
    }

    #main .header #mnav{
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,.9);
        z-index: 2;
        color: #000;
        position: fixed;
        right: 0;
    }

    #main .header #mnav #mnavoff{
        float: right;
        margin-right: 2vw;
        font-weight: 100;
        cursor: pointer;
        font-size: 7vh;
    }

    #main .header #mnav nav ul{
        list-style: none;
        margin-top: 35px;
    }

    #main .header #mnav nav ul li{
        display: block;
        font-weight: 100;
        margin-top: 10vh;
    }

    #main .header #mnav nav ul li a{
        color: #000;
        font-size: 30px;
    }

    #main .header #mnav nav ul li a h1{
        margin-left: 25px;
        margin-top: -5vh;
    }

    #main .header nav ul li .nav_bars{
        display: none;
    }

    #main .header #mnav nav ul li .mot{
        font-size: 2vh;
    }

    #main .header nav ul li #mnavon{
        display: block;
        font-size: 30px;
        color: white;
        margin-left: 80vw;
        margin-top: -70px;
    }

    #main .header nav ul li #mainpage{
        color: blue;
    }

    #main #contact h1{
        margin-top: -53vh;
        font-size: 6vh;
        margin-right: 5vw;
    }

    #main #contact h4{
        margin-top: 38vh;
    }

    #main #contact #ch{
        margin-top: -53vh;
        margin-right: 3vw;
        font-size: 5vh;
    }

    #main2 #members figure img{
        width: 20vw;
        height: 20vw;
    }
}
