body, html {
    height: 100%;
    margin: 0;
    background-color: #141414;
    color: white;
}
/** Navigation Bar**/
.nav {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
}

.nav img {
    width: 25%;
    padding-left: 10px;
}

#navBar a {
    background-color: #020001;
    margin: 0;
    padding-top: 36px;
    padding-bottom: 36px;
    transition: .5s ease;
    color:white;
    
}

.left {
    width: 10%;
}

#navBar a:hover {
    background-color: #0165ff;
}

#active {
    border-bottom: 2px sold #0165ff;
}

#navBar {
    margin:auto;
    padding: 0;
    height: 90px;
    background-color: #020001;
}

/**Responsive**/
.phoneImage {
    display: none;
}

/** Medium **/
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .left img {
        display: none;
    }
    .fullImage {
        display: none;
    }

    .phoneImage {
        display: contents;
    }

    #navBar a {
        font-size: 15px;
    }

    .left {
        width: 0%;
    }

    .menu ul {
        width: 100%;
    }
}

/**Small**/
@media screen and (max-width: 39.9375em) {
    .left img {
        display: none;
    }

    .menu li {
        width: 100%;
    }

    #navBar a {
        padding: 15px;
    }

    .fullImage {
      display: none;
    }

    .phoneImage {
        display: contents;
    }
}

/** footer **/
footer {
    background-color: #020001;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
}

footer img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

#lp {
    height: 100px;
    width: 100px;
}

/** Header Image **/
.bg {
    height: 50%;
    background-image: url("/img/gameBusNoBack.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.bg img {
    height: 100px;
    width: 100px;
    padding-top: 5px;
}

.bg h2 {
    font-family: 'Orbitron', sans-serif;
    padding-top: 10%;
    
}

span {
    background-color: rgb(20, 20, 20,.6);
    padding: 10px;
    letter-spacing: 1rem;
}
hr {
    background: rgb(1,101,255);
    background: linear-gradient(180deg, rgba(1,101,255,1) 49%, rgba(223,13,13,1) 51%); 
    height: 6px;
    border: none;
}

h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

form {
    width: 50%;
    margin: auto;
    padding: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
}

input[type=text], input[type=email], input[type=tel] {
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    border:2px solid;
    border-image-source: linear-gradient(180deg, rgba(1,101,255,1) 49%, rgba(223,13,13,1) 51%); 
    border-image-slice: 1;
}

input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus {
    border: none;
    color: white;
    outline: none;
    background-color: transparent;
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(1,101,255,1) 49%, rgba(223,13,13,1) 51%); 
    border-image-slice: 1;
}

textarea, textarea:focus {
    outline: none;
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(1,101,255,1) 49%, rgba(223,13,13,1) 51%); 
    border-image-slice: 1;
    background-color: transparent;
    color: white;
}

input[type=submit] {
    outline: none;
    border: none;
    background-color: rgba(223,13,13,1); 
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    letter-spacing: 5px;
    padding: 20px;
    margin: auto;
}


::placeholder {
    color: white;
}
