@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic");
@import url("https://fonts.googleapis.com/css?family=Lora");
/*The dark blue is #061146. 
 Pale Blue is #e8ebfd.
 The red is #c6010b. 
 Light blue is #8a9cf5. 
 Medium blue is #5b74f1.*/
html {
  background-image: url(white_wall2.png);
  background-repeat: repeat;
}

body {
  font-family: 'Nanum Gothic', sans-serif;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

header {
  padding: 30px;
  text-align: center;
}

#logo {
  width: 70%;
}

.navbar {
  background-color: #061146;
  overflow: hidden;
  border-top: black 3px solid;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 12px 17px;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar a:hover {
  background-color: #c6010b;
}

.navbar a:active {
  background-color: #5b74f1;
}

.navbar a.current {
  background-color: #5b74f1;
  font-weight: bold;
}

.navbar .menuIcon {
  display: none;
}

@media screen and (max-width: 850px) {
  .navbar a:not(:first-child) {
    display: none;
  }
  .navbar a.menuIcon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 850px) {
  .navbar.responsive {
    position: relative;
  }
  .navbar.responsive .menuIcon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.center {
  text-align: center;
  padding: 0 20px;
}

.copy {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}

h1 {
  font-family: 'Lora', serif;
  color: #061146;
  font-size: 3em;
}

h2 {
  font-family: 'Lora', serif;
  color: #c6010b;
  font-size: 2.5em;
}

h3 {
  font-family: 'Lora', serif;
  color: #c6010b;
  font-size: 2em;
}

h4 {
  font-family: 'Lora', serif;
  color: #0f019b;
  font-size: 1.2em;
}

h5 {
  font-family: 'Lora', serif;
  color: #c6010b;
  font-size: 1.2em;
}

h6 {
  font-family: 'Lora', serif;
  color: #0f019b;
  font-size: 1.1em;
}

p {
  font-family: 'Nanum Gothic', sans-serif;
  color: #061146;
}

p a:link, h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link {
  color: #5b74f1;
  text-decoration: none;
}

p a:visited, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited {
  color: #0f019b;
  text-decoration: none;
}

p a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
  color: #8a9cf5;
  text-decoration: none;
}

p a:active, h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active {
  color: #c6010b;
  text-decoration: none;
}

.photo {
  width: 100%;
  border-top: black 3px solid;
  border-bottom: black 3px solid;
}

.smallpic {
  min-width: 20%;
  margin: 30px auto;
}

.artwork {
  height: 40px;
  background-image: url(background.jpg);
  background-size: 300px;
  background-repeat: repeat;
  border-top: black 3px solid;
  border-bottom: black 3px solid;
  background-attachment: fixed;
}

/****************************************************ABOUT PAGE********************************************/
.row {
  display: -ms-flexbox;
  /* IE10 */
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  width: 80%;
  margin: 0 auto;
}

.pic-column {
  -ms-flex: 30%;
  /* IE10 */
  -webkit-box-flex: 30%;
          flex: 30%;
  max-width: 30%;
  padding-top: 4%;
  padding-bottom: 4%;
}

.text-column {
  -ms-flex: 60%;
  /* IE10 */
  -webkit-box-flex: 60%;
          flex: 60%;
  max-width: 60%;
  padding: 0 5% 3% 5%;
}

@media screen and (max-width: 700px) {
  .pic-column, .text-column {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.break:after {
  content: "";
  position: relative;
  height: 100px;
  width: 100px;
}

@media (min-width: 1200px) {
  .break {
    display: none;
  }
}

/****************************************************END ABOUT PAGE***************************************/
/****************************************************GALLERY IMAGES***************************************/
.video {
  max-width: 1200px;
  height: 300px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .video {
    height: 500px;
    max-width: 1200px;
  }
}

.video iframe {
  width: 100%;
  height: 100%;
}

.gallery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 2% 0;
  background-color: #e6e6e6;
}

.gallery-container a:link, .gallery-container a:visited {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.5em;
}

@media (min-width: 600px) {
  .gallery-container {
    max-height: 3000px;
  }
}

@media (min-width: 615px) {
  .gallery-container {
    max-height: 3200px;
  }
}

@media (min-width: 660px) {
  .gallery-container {
    max-height: 3300px;
  }
}

@media (min-width: 680px) {
  .gallery-container {
    max-height: 3400px;
  }
}

@media (min-width: 700px) {
  .gallery-container {
    max-height: 3600px;
  }
}

@media (min-width: 750px) {
  .gallery-container {
    max-height: 3800px;
  }
}

@media (min-width: 800px) {
  .gallery-container {
    max-height: 4000px;
  }
}

@media (min-width: 850px) {
  .gallery-container {
    max-height: 4200px;
  }
}

@media (min-width: 900px) {
  .gallery-container {
    max-height: 2050px;
  }
}

@media (min-width: 920px) {
  .gallery-container {
    max-height: 2150px;
  }
}

@media (min-width: 965px) {
  .gallery-container {
    max-height: 2250px;
  }
}

@media (min-width: 1000px) {
  .gallery-container {
    max-height: 2300px;
  }
}

@media (min-width: 1040px) {
  .gallery-container {
    max-height: 2400px;
  }
}

@media (min-width: 1090px) {
  .gallery-container {
    max-height: 2450px;
  }
}

@media (min-width: 1120px) {
  .gallery-container {
    max-height: 2500px;
  }
}

@media (min-width: 1150px) {
  .gallery-container {
    max-height: 2600px;
  }
}

@media (min-width: 1200px) {
  .gallery-container {
    max-height: 2650px;
  }
}

.gallery-container .gallery-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2% auto;
  padding: 0;
  width: 95%;
  overflow: hidden;
}

@media (min-width: 600px) {
  .gallery-container .gallery-content {
    margin: 1% 1% 0 0;
  }
}

.gallery-container .gallery-content a .gallery-thumbnail {
  width: 100%;
  margin-bottom: 2%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .gallery-container .gallery-content {
    -ms-flex: 48%;
    -webkit-box-flex: 48%;
            flex: 48%;
    max-width: 48%;
    margin: 1%;
  }
}

@media screen and (min-width: 900px) {
  .gallery-container .gallery-content {
    -ms-flex: 31%;
    -webkit-box-flex: 31%;
            flex: 31%;
    max-width: 31%;
  }
}

.gallery-container #video-lightbox {
  width: 95%;
  height: 90vh;
  margin: 2% 0;
  padding: 3vh;
  text-align: right;
}

.gallery-container #video-lightbox iframe {
  width: 90%;
  height: 90%;
  border: none;
  margin: 5%;
}

.gallery-container .lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
}

.gallery-container .lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 5vh;
}

.gallery-container .lightbox:target {
  outline: none;
  display: block;
}

/***************************************************END LIGHTBOX*********************************************/
/*************************************REGISTRATION & CONTACT FORM******************************************/
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.registration-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

input[type=text], textarea {
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  font-size: 1em;
  padding: 8px 8px;
  margin: 6px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid grey;
  background-color: #eee;
}

input[type=text]:focus, textarea:focus {
  background-color: #e8ebfd;
}

input[type=text] {
  border-radius: 6px;
}

textarea {
  height: 200px;
  border-radius: 7px;
}

button[type=submit] {
  background-color: #5b74f1;
  border: none;
  color: white;
  padding: 10px 30px;
  text-decoration: none;
  /*margin: 4px 2px 0px 380px;*/
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2em;
  border: 2px solid grey;
  border-radius: 6px;
}

button:hover {
  background-color: red;
  opacity: .8;
}

button:active {
  color: #8a9cf5;
}

/***************************************************************END CONTACT FORM******************************************/
.songs-text {
  text-align: left;
  position: relative;
  left: 250px;
}

.songs-list {
  max-width: 500px;
  margin: 0px auto;
}

td {
  padding-bottom: 30px;
}

footer {
  background-color: #061146;
  height: 70px;
  margin: -12px 0 0 0;
}

footer p {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: .75em;
  line-height: 1.5em;
  color: #ccc;
  padding: 15px 0px;
  text-align: center;
}

footer p a:link {
  text-decoration: none;
  color: #5b74f1;
}

footer p a:visited {
  text-decoration: none;
  color: #5b74f1;
}

footer p a:hover {
  text-decoration: none;
  color: #8a9cf5;
}

footer p a:active {
  text-decoration: none;
  color: #c6010b;
}
/*# sourceMappingURL=style.css.map */