@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
body {
    margin: 0px;
    background: black;
    font-family: 'Century Gothic','Montserrat', sans-serif;
    color: white;
}

#onlineBtn {
	margin-left: 60px;
	margin-right: 60px;
	width: 80%;
}

p{
    font-size: .9em;
    line-height: 1.6em;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.container {
    text-align: center;
    padding: .8em 1.2em;
}

.logo {
    width: 160px;
    height: 40px;
}


header { 
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 90%;
    top: 20px;
    z-index: 2;
    
}

.menu {
    width: 25px;
    margin-top: 45%;
}

.hide-mobile {
    display: none;
}

h1, .subhead {
    position: relative;
    z-index: 1;
    font-weight: 100;
}

section {
    justify-content: center;
    overflow: hidden;
}

section::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.0, 1.0);
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    -moz-transform: translateZ(0) scale(1.0, 1.0);
    -ms-transform: translateZ(0) scale(1.0, 1.0);
    -o-transform: translateZ(0) scale(1.0, 1.0);
    background-image: url(images/bg3.png);
    background-size: cover;
    -webkit-background-size: cover;
    background-attachment: fixed;
    animation: increase 60s linear 10ms infinite;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    z-index: -2;
}

.art {
    margin-top: 100px;
    font-size: 108;
    font-size: 3em;
}

.brand {
    font-size: 24pt;
    font-weight: 300;
}

.rankContainer {
    width: 100%;
}

header nav ul li a{
    text-decoration: none;
    color: white;
    display: block;
    width: 100%;
    padding: 1em 2em;
}

header nav ul li a:hover{
    background-color: rgb(52, 59, 63)
}

.rankBox {
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 5%;
    width: 250px;
    height: 300px;
    margin-left: 30px;
    margin-bottom: 30px;
    display: inline-block;
    padding: 25px;
}

.rankBox1:hover {
    background-color: #A622BA;
}

.rankBox2:hover {
    background-color: #FF0406;
}

.rankBox3:hover {
    background-color: #FCB040;
}

.exit-btn {
    margin-bottom: 1em;
    margin-top: -1.3em;
    text-align: right;
    padding: 0 1.4em;
}

.exit-btn img {
    width: 15px;
    cursor: pointer;
}

nav ul {
    position: fixed;
    width: 60%;
    top: 0;
    right: 0;
    text-align: left;
    background: rgb(36, 41, 44);
    height: 100%;
    z-index: 7;
    padding-top: 3em;
}

.aboutContainer {
    background: rgba(0, 0, 0, 0.5);
    margin: 0;
    border-radius: 20px;
    z-index: 1;
}
.gallery {
    margin-top: 50px
}

.galleryImg {
    width: 70%;
}

.gallery h1 {
    font-size: 20pt;
}

.gallery p {
    font-size: 16pt;
}

.contactTxt {
    font-size: 20pt;
}

.neonImg{
    width: 80%;
    margin-top: 60px;
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


@media only screen and (min-width: 650px) {
    h1 {
        font-size: 3em;
        margin-top: 15px;
    }
    
    .subhead {
        font-size: 1.4em;
        margin-bottom: 110%;
    }

    nav ul {
        width: 40%;
    }
}

@media only screen and (min-width: 700px) {
    .subhead {
        margin-bottom: 90%;
    }

    .gallery {
        margin-top: 50px;
        margin-bottom: 15%;
        vertical-align: middle
    }
    
    .galleryImg {
        width: 30%;
        float: right;
    }

    #img2 {
        float: left;
    }

    .gallery h1 {
        padding-top: 50px;
    }
	
	#onlineBtn {
	margin-left: 130px;
	margin-right: 130px;
	width: 30%;
	}

}

@media only screen and (min-width: 800px) {
    .subhead {
        margin-bottom: 80%;
    }
    .neonImg{
        width: 60%;
        margin-top: 60px;
    }
    
}

@media only screen and (min-width: 1024px) {

    .brand {
        font-size: 32pt;
    }

    .neonImg{
        width: 45%;
        margin-top: 60px;
    }

    .container {
        width: 90%;
        margin: 0 auto;
    }

    .subhead {
        margin-bottom: 60%;
    }

    .show-desktop {
        display: block;
        margin: 0 auto 13% auto;
    }

    .hide-desktop {
        display: none;
    }

    nav ul {
        position: inherit;
        width: auto;
        background: none;
        height: auto;
        display: flex;
        padding-top: 0;
    }

    nav ul li {
        float: left;
    }

    header nav ul li a {
        color: white;
        width: auto;
        border-radius: 450px;
        padding: 1em 2em;
    }

    .home:hover{
        background-color:#A622BA;
        color: white;
    }
    .about:hover{
        background-color:#FF0406;
        color: white;
    }
    .contact:hover{
        background-color:#FCB040;
        color: white;
    }
}

@media only screen and (min-width: 1200px) {
    .neonImg{
        width: 35%;
        margin-top: 60px;
    }
    .subhead {
        margin-bottom: 40%;
    }
}

@keyframes increase {
    0%{transform:scale(1)}
    100%{transform:scale(1.5)}
}


