/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end reset */

html {
overflow-x: hidden;
overflow-y: auto;
max-width: 100%;
}
body {
  margin: 0; 
  padding: 0;
  background: #111;
  height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  
}
.container {
	max-width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spotify {
  margin-bottom: 30px;
  margin-top: 10px;
}

.mainText {
  color: #fff;
  margin: 20px;
}
.footerText {
  color: #fff;
  margin: 20px;
}

@media screen and (max-width: 700px) {
	.container {
		-ms-flex-align: flex-start;
		-webkit-align-items: flex-start;
		-webkit-box-align: flex-start;
		align-items: flex-start;
		
		-webkit-justify-content: center; /* Safari 6.1+ */
	    	justify-content: center;
	    	 overflow-y: scroll; /* has to be scroll, not auto */
  		-webkit-overflow-scrolling: touch;
	}
}
.diy-slideshow{
  position: absolute;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 700px) {
	.diy-slideshow {
		width: 100%;
		height: 100vh;
	}
}
.card {
  background-color: rgba(0,0,0,0.85);
  color: #fff;
  padding: 20px 50px;
  text-align: center;
  z-index:10;
  margin: 20px;
    -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
   border-radius: 5px; 
}

@media screen and (max-width: 700px) {
	.card {
		margin-top: 85%;
		padding: 20px 20px;
		
		background-color: #111;
	}
}

h1 {
  font-size: 2em;
  letter-spacing: 5px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300;
}
h3 {
  font-size: 1em;
  line-height: 30px;
  font-family: 'Josefin Slab', serif;
}
button {
   height:30px;
   
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
   border-radius: 5px;  
   border: none; 
   
   font-family: 'Open Sans Condensed', sans-serif;
   font-size: 1.2em;
   line-height: 1.2em;
   font-weight: 700;
      text-align: center;
   padding-left: 20px;
   padding-right: 20px;
   cursor: pointer;
   background-color: #ccc;
}
button.buttonContact {
	margin-top: 10px;
}
figure{
  opacity: 0;
  transition: 1s opacity;
   /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  
}
@media screen and (max-width: 700px) {
	figure {
		min-width: 0;
		width: 100vw;
	}
}

figcaption{
  position: absolute;
  font-family: sans-serif;
  font-size: .8em;
  bottom: .75em;
  right: .35em;
  padding: .25em;
  color: #fff;
  background: rgba(0,0,0, .25);
  border-radius: 2px;
}
figcaption a{
  color: #fff;
}
figure.show{
  opacity: 1;
  position: static;
  transition: 1s opacity;
}
.next, .prev{
  color: #fff;
  position: absolute;
  background: rgba(0,0,0, .6);
  top: 50vh;
  z-index: 1;
  font-size: 2em;
  margin-top: -.75em;
  opacity: .3;
  user-select: none;
}
@media screen and (max-width: 700px) {
	.next, .prev {
		top: 50px;
	}
}

.next:hover, .prev:hover{
  cursor: pointer;
  opacity: 1;
}
.next{
  right: 0;
  padding: 10px 5px 15px 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.prev{
  left: 0;
  padding: 10px 10px 15px 5px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
p{
  margin: 10px 20px;
  color: #fff;
}
a{color:#fff;}

