*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
}
body{
    min-height: 1000px;
    max-height: max-content;
    color: white;
}
::-webkit-scrollbar{
    width:0px;
}
.footer{
    display: none;
}
.block{
    display: none;
}
header{
    position: fixed;
    background: black;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 100px;       
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}
.headfooter{
    position: fixed;
    bottom: 30px;
    text-align: center;
    width: 100%;
    right: 30px;
    font-size: 17px;
}
.sticky{
    height: 80px;
    /* transition: 0.5s; */
}
.logo{
    position: absolute;
    top: 50%;
    left: 50%;
    color: gray;
    transform: translate(-50%,-50%);
    font-size: 8em;
    text-align: center;
    -webkit-box-reflect: below 1px linear-gradient(transparent,white);
    line-height: 0.7em;
    outline: none;
    animation:tubelight 5s linear infinite;
    text-transform: uppercase;
    letter-spacing: 15px;
    text-decoration: none;
    z-index: 1;
}
.sticky .logo{
    position: absolute;
    left: 80px;
    font-size: 2em;
    transform: translate(0,-50%);
    
}
@keyframes tubelight{
    0%,18%,20%,50.1%,60.1%,65.1%,80%,90.1%,92%  
    {
        color: gray;
        text-shadow: none;
    }
    18.1%,20.1%,30%,50%,60%,65%,80.1%,90%,92.1%,100%
    {
        color: white;
        text-shadow: 0 0 10px gray,
        0 0 20px gray,
        0 0 40px gray,
        0 0 80px gray,
        0 0 160px gray;
    }   
}
nav{
    position: fixed;
    top: 20px;
    right: 30px;
    display: none;
    z-index: 1;
}
.sticky nav{
    display: flex;
}
nav ul{
    display: flex;
    position: relative;
    transition: 0.25s;
    transform: translateX(100px);
    opacity: 0;
}
.sticky nav ul{
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.75s;
}
nav ul li{
    list-style: none;
}
nav ul li a{
    color: white;
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1.3em;
}
nav ul li a:hover{
    color: red;
}
main{
    background: black;
    min-height: 100vh;
    padding: 100px;
}
main h2{
    text-align: center;
    margin-top: 20vh;
    font-size: 4em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}
main ul{
    /* margin-top: 35vh; */
    text-align: center;
}
main ul li{
    list-style: none;
    padding: 5px;
}
main ul li a{
    text-decoration: none;
    font-size: 1.1em;
}
main ul li a:hover{
    color: red;
}
.box div{
    position:absolute;
    width: 60px;
    height: 60px;
    color: white;
    background-color:transparent;
    border: 6px solid white;
    overflow: hidden;
}
.blank div{
    display: none;
}
.box div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: gamebg 10s linear infinite;
}
.box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: gamebg 7s linear infinite;
}
.box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: gamebg 9s linear infinite;
}
.box div:nth-child(4){
    top: 30%;
    left: 60%;
    animation: gamebg 10s linear infinite;
}
.box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: gamebg 6s linear infinite;
}
.box div:nth-child(6){
    top: 80%;
    left: 65%;
    animation: gamebg  12s linear infinite;
}
.box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: gamebg 15s linear infinite;
}
.box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: gamebg 16s linear infinite;
}
.box div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: gamebg 9s linear infinite;
}
.box div:nth-child(10){
    top: 40%;
    left: 60%;
    animation: gamebg 5s linear infinite;
}
@keyframes gamebg{
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}
footer{
    min-height: 60vh;
    max-height: max-content;
    background: gray;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.container{
   display: flex;
   flex-wrap: wrap;
   width: 100%;
   justify-content: space-between; 
}
.box{
    margin: 10px;
}
.bottom{
    margin-top: 160px;
    width: 100%;
    text-align: center;
}
.box ul li{
    list-style: none;
    padding: 4px;
}
.box ul li a{
    text-decoration: none;
}
.box h2 a{
    text-decoration: none;
}

.box p,h2{
padding: 3px;
}
@media only screen and (max-width:600px) and (min-width:400px){
    .logo{
        font-size: 3em;
        padding-left: 16px;
    }
    .headfooter{
        font-size: 12px;
        padding-left: 48px;
    }
}
@media only screen and (max-width:400px) and (min-width:300px){
    .logo{
        font-size: 2em;
        padding-left: 13px;
    }
    .headfooter{
        font-size: 12px;
        padding-left: 48px;
    }
    main h2{
        font-size: 3em;
    }
}
@media only screen and (height:568px) and (width:320px){
    
    main h2{
        font-size: 2em;
    }
}
@media only screen and (max-width:300px) and (min-width:200px){
    .logo{
        font-size: 20px;
        padding-right: 18px;
    }
    .headfooter{
        font-size: 12px;
        padding-left: 48px;
    }
}
@media screen and (width:540px){ 
    .headfooter{
        font-size: 10px;
        padding-left: 59px;
    }
}
@media screen and (width:768px){ 
    .headfooter{
        font-size: 20px;
        padding-left: 59px;
    }
    .logo{
        font-size: 5em;
        padding-left: 18px;
    }
}
@media screen and (width:1024px){ 
    
    .headfooter{
        font-size: 20px;
        padding-left: 59px;
    }

    .sticky{
        height: 150px;
    }
    .sticky .logo{
        font-size: 3em;
    }
    nav ul li a{
        font-size: 2em;
    }

}
@media screen and (max-width:991px) {
    .sticky .logo{
        left: 10px;
    }
    nav ul{
        display: none;
    }
    .box div{
        width: 40px;
        height: 40px;
    }
    .sticky .toggle{
        position: fixed;
        top: 23px;
        right: 11px;
        width: 35px;
        height: 35px;
        cursor: pointer;
        font-size: 22px;
        display: block;
        visibility: visible;
    }
    .active ul{
        /* display: block; */
        visibility: visible;
        top: 80px;
        position: fixed;
        width: 100%;
        left: 0;
        height:calc(100% - 80px);
        background: black;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

