* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */
body  {
    font-family: 'Arial' , sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
    align-items: center;
    padding:0;
    margin:0;
    justify-content: center;
}

/* Nav BAR */
nav {
    position: relative;
    background: rgb(255, 255, 255);
    color: #fff;
    display: flex;
    justify-content: space-between;
    height: 100%; /* Change applied */
    overflow: hidden;
    width:100%;
}

/* Nav Main Menu */
nav .mainMenu {
    display:flex;
    list-style: none;
}

/* Centered section inside the top navigation */
.nav-center{
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.nav-right {
    position:absolute;
    float: right;
    right:-100px;
    top:50%;
    transform: translate(-50%, -50%);
}

nav .mainMenu li a {
    display: inline-block;
    padding: 30px;
    margin:10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-family:'Courier New', Courier, monospace;
}
nav .mainMenu li a:hover {
    color: rgb(0, 110, 255);
}

nav .openMenu {
    font-size: 2rem;
    margin: 20px;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu , .icons i {
    font-size: 2rem;
    display: none;
    cursor: pointer;
}

nav .logo {
    margin: 6px;
    font-size: 25px;
    cursor: pointer;
    display:none;
}

.icons i {
    display: inline-block;
    padding: 12px;
    color:black;
}

/* CONTAINER FLUID */

.container-fluid{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 1100px;
    padding-bottom: 0.5rem;
}

.img-fluid{
    padding-bottom: 5px;
}

/* CONTACT DIV */

.contact{
    width:100%;
    height:250px;
    padding-bottom: 2.5rem;
    background-color: black;
    color:white;
}

.contact .holder{
    background-color: black;
    margin:auto;
    width:50%;
    height:100%;
}

.contact .holder .title{
    font-size:3rem;
    font-weight: 200;
    padding:10px;
    text-align: left;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

footer .contact .holder .info{
    position: inherit;
    font-family:'Courier New', Courier, monospace;
    padding:10px;
    text-align: left;
    color:white;
    padding-bottom: 1rem;
}

.button {
    border: none;
    background-color: white;
    color: black;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1:hover{
    background-color: gainsboro;
}

/* FOOTER */

footer {
    padding-top:1rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: black;
    height: 50px;
    font-family:'Courier New', Courier, monospace;
}

footer p{
    position: relative;
    left:70%;
    bottom:-25px;
    color:black;
}

footer .icons{
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute; /* MARKED HERE */
    left: 15%;
    bottom: 4;
}

footer .icons .fab{
    font-size:1rem;
    border: solid;
    border-width: 1px;
}


/* HEADER DIV */
header h1{
    background-color: #2A63E7;
    border-top: solid;
    border-width: 1px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 5px;
    height:100px;
    width: 100%;
    align-items: center;
    line-height:100px;
    margin-bottom: 0;
} 

header h2{
    background-color: black;
    letter-spacing: 5px;
    height:30px;
    width:100%;
    align-items: center;
    line-height:30px;
    font-size:10px;
}

/* SOCIAL HOVERS */

.fa-youtube:hover {color: rgb(255, 0, 0);}
.fa-twitter:hover {color: rgb(86, 154, 243);}
.fa-instagram:hover {color: rgb(255, 102, 0);}
.fa-discord:hover {color: rgb(141, 5, 130);}

/* IMG HOVERS */
.img-fluid:hover{opacity:0.3; transition: .5s ease;}

.leftLinks {
    display: inline-block;
    position: relative;
    color: rgb(0, 110, 255);
}
  
.leftLinks:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 25px;
    left: 0;
    background-color: rgb(0, 110, 255);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.leftLinks:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* SCROLL BAR  */

::-webkit-scrollbar {
    background-color: black;
    color: #ffffff;
}
::-webkit-scrollbar-thumb {
    background:linear-gradient(
        45deg,
        #412eec,
        #2586e0
    );
}
::-webkit-scrollbar-thumb:hover {
    background-color: #383b3e;
}
::-webkit-scrollbar-thumb:active {
    background-color: #2A456E;
}
::-webkit-scrollbar-corner {
    background-color: #181a1b;
}

/* TEST MEDIA QUERIES FOR FOOTER AND BOXES */

@media(max-width:1190px){
    .container-fluid{
        height:1000px;
    }
}

@media(max-width:1200px){
    .container-fluid{
        height:1000px;
    }
}

@media(max-width:550px){
    footer{
        position:absolute;
        bottom:-60rem;
    }
}

@media(max-width:500px){
    footer{
        position:absolute;
        bottom:-50rem;
    }
}

/* First Media Querie */

@media(max-width:1020px){
    nav .mainMenu li a {
        display: inline-block;
        padding: 30px;
        margin:10px;
        text-decoration: none;
        text-transform: uppercase; 
        color: rgb(0, 0, 0);
        font-size: 1rem;
        font-family:'Courier New', Courier, monospace;
    }
    .contact .holder .title{
        font-size:2rem;
    }
    
    footer .contact .holder .info{
        font-size:1rem;
    }
}

/* Second Media Querie (FOOTER) */

@media(max-width:676px){
    .contact .holder .title{
        font-size:1.5rem;
    }
    
    footer .contact .holder .info{
        font-size:0.8rem;
    }

    footer p{
        position: relative;
        left:60%;
        bottom:-25px;
    }
    
    footer .icons{
        position: absolute;
        left: 10%;
        bottom: 4;
    }
    
    footer .icons .fab{
        font-size:0.8rem;
    }
}

/* Third Media Querie (FOOTER) */

@media(max-width:555px){
    footer .contact .holder .info{
        padding:1px;
    }
    .button {
        padding: 5px 5px;
        font-size: 12px;
        margin: 5px 5px;
    }
}

/* Fourth Media Querie */

@media(max-width: 845px){
    nav .logo{
        margin: 6px;
        font-size: 25px;
        cursor: pointer;
        display:inherit;
    }

    nav .mainMenu {
        padding-left:0;
        height: 100vh;
        position: fixed;
        top: -100%;
        right: 0;
        left: 0;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: white;
        transition: top 1s ease;
        display: flex;
    }

    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color:black;
    }

    nav .openMenu {
        display: block;
    }

    nav .mainMenu li a {
        background: transparent;
        font-size: 2rem;
    }

    nav .mainMenu li a:hover {
        background: none;
        color: rgb(0, 110, 255);
        font-size: 2.5rem;
        transition: ease all .5s;
    }

    nav .mainMenu .nav-right .icons{
       display: none;
    }

    nav .mainMenu .nav-center{
        position: absolute;
        top:20%;
        right:42%;
    }

    .icons i {
        display: inline-block;
        padding: 12px;
        color:rgb(0, 0, 0);
    }

    footer .contact .holder .info{
        font-size:0.8rem;
    }

}

/* ----------------------------------------------------------------------------------------- */

/* IPHONE RESPONSIVENESS HEADER 2 */

@media (max-width: 647px) { 

    header h2{
        font-size: 5px;
        transition: ease all .5s;
    }

}

@media (max-width: 471px) { 

    header h2{
        font-size: 4px;
        letter-spacing: 2px;
        transition: ease all .5s;
    }

}

@media (max-width: 266px){

    header h2{
        font-size: 3px;
        transition: ease all .5s;
    }
    
}
/* IPHONE RESPONSIVENESS FOOTER */

@media (max-width: 529px) { 

    .container-fluid{
        height:1000px;
        transition: ease all .5s;
    }

}

@media (max-width : 450px){
    .container-fluid{
        height:900px;
        transition: ease all .5s;
    }
}

@media (max-width : 420px){
    .container-fluid{
        height:800px;
        transition: ease all .5s;
    }

    footer .contact .holder .info{
        font-size:0.6rem;
        transition: ease all .5s;
    }
}

@media (max-width : 400px){
    .container-fluid{
        height:500px;
        transition: ease all .5s;
    }
}

@media (max-width : 350px){
    .container-fluid{
        height:400px;
        transition: ease all .5s;
    }
}

@media(max-width:386px){
    footer p{
        font-size: 0.5rem;
        left:80%;
    }
}


/* FOOTER FIX */

#copyright_text{
    width:200px;
}


@media (max-width: 600px) {
    #copyright_text {
      width: 130px;
    }
}

@media (max-width: 400px) {
    #copyright_text {
      width: 50px;
    }
}