audio {
	width: 100%;
	background-color: #fff;
}

/*---------------mobile hamburger----------------*/

.mobile-nav{
	height:100%;
}

#menuToggle
{
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #9ED342;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  top:0;
  left:0;
  width: 100vw;
  height:100vh;
  margin: -20px 0 0 -20px;
  padding: 50px;
  padding-top: 125px;
  
  background: #9ED342;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
  text-align:center;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ div
{
  transform: none;
}




/*---------------LANDING PAGE index.html----------------*/

.landing-body{
	background-color: #9ED342;
}

.landing-box{
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) }
}

.row{
	height:100%;
	width:100%;
	position:relative;
}

.landing-logo{
	width:60vw;
	height:45vw;
	background-image: url('../images/logo-mixed.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
}

.landing-text{
	text-align: center;
	letter-spacing: 0.5em;
	padding-bottom:40px;

}

.landing-box a:hover{
	color: #fff;
}



/*---------------NAV BAR + HEADER ----------------*/


header{
	padding:15px 0;
	background-color:#9ED342;
	position:relative;
}

nav{
	position:relative;
}

.social{
	position:absolute;
	top: 30%;
	margin-left:15px;
	display:flex;
}

#menu .btn-black-green{
	margin-top:25px;
}

.social-menu{
	padding-top:10px;
	margin:auto;
	display:flex;
	justify-content: center;
}

.social-icon{
	width:60px;
	padding-right:15px;
	transition: filter 0.2s;
}

.social-icon:hover{
	filter: invert(100%);
	-webkit-filter: invert(100%);

}

.join{
	text-align:right;
	position: absolute;
	right:10px;
	top: 30%;

}




.nav-links{
	padding-top:150px;
	margin: auto;
	padding-bottom:15px;
	font-size:1.2em;
}

.nav-item{
	padding:0 30px;
}

.nav-logo{
	margin-right:30px;
	position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    transition: filter 0.2s;

}

.nav-logo:hover{
	filter: invert(100%);
	-webkit-filter: invert(100%);
}


.nav-search{
	text-align:left;
}

/* Change the color of links on hover */
nav a:hover {
  color: #fff;
}

/* Style the "active" element to highlight the current page */
nav a.active {
  color: #9ED342;
}

/* Style the search box inside the navigation bar */
nav input[type=text] {
  padding: 6px;
  border: 1px solid #000;
  margin-top: 8px;
  border-radius:10px;
  font-size: 1em;
}


/*---------------HOME PAGE DECORATION----------------*/

.deco{
	position:fixed;
	width:120px;
	bottom:30px;
	right: 30px;
	z-index: 99;
	display: none;
	text-align: center;
	animation-name: example;
	animation-duration: .7s;
	animation-play-state:paused;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

div:hover{
animation-play-state: running;
}

@keyframes example {
  0%   {bottom:30px; right: 30px;}
  50%  {bottom:45px; right: 30px;}
  100% {bottom:30px; right: 30px;}
}

.deco img{
	width:100px;
	margin-top: 20px;

}

.deco p{

}


/*---------------ABOUT PAGE ----------------*/

.exo{
	
}


.about{
	flex-basis:100%;
	max-width:100%;
	padding:0 15px;
}

.about p{
	margin-bottom:10px;
	line-height:1.5;
	font-family: Exo;
}

.about a{
	text-decoration: underline;
}

.about a:hover{
	color: #9ED342;
	text-decoration: underline;
}

.about-links{
	margin-bottom:100px;
}


.instagram, .twitter{
	width:30px;
	height:40px;
}

.instagram {
	margin-left:15px;
}

.profile-pic {
	border-radius:50%;
	width:100px ;
}

.official-social {
	flex-basis: 100%;
	max-width: 100%;
}


/*---------------ARTISTS PAGE ----------------*/

.artist-h1{
	text-align:center;
	padding-top:20px;
}


.artist a{
	font-family:Exo;
	text-decoration: underline;
	line-height:1.5;
	font-size:.9em;
}

.artist a:hover{
	color: #9ED342;
	text-decoration: underline;
}

.artist {
	border: solid 2px;
	border-color: #9ED342;
	padding-bottom: 10px;
	padding-left:10px;
	padding-right:10px;
	border-radius: 20px;
	flex-basis:calc(50% - 20px);
	max-width:calc(50% - 20px);
	position:relative;
	top:0;
	left:0;
	margin: 10px;
	text-align:center;
	transition: box-shadow .2s;
	justify-content: center;
	flex-direction: column;
}

.artist:hover {
	box-shadow: 2px 2px 8px #9ED342;
}

.artist img {
	width:100px;
	object-fit:contain;
	overflow:hidden;
	display:block;
	margin: auto;

}

.artist-grid {
	padding-top:40px;
	width: 100%;
	padding-bottom:100px;
}

.artist-name {
	font-weight: 900;
	padding-bottom:10px;
}

.artist-logo{
	height:150px;
	display:flex;
	align-items:center;
	justify-content: center;
	margin-top:0px;
}


@media only screen and (min-width: 768px) {
	.artist{
		flex-basis:calc(25% - 20px);
		max-width:calc(25% - 20px);
		padding-bottom:30px;
	}
	.artist p{
	font-size:1.3em;
	}
	.artist img {
	width:150px;
	}
	.artist a{
	font-family:Exo;
	text-decoration: underline;
	line-height:1.8;
	}

	.artist-logo{
	height:175px;
	display:flex;
	align-items:center;
	justify-content: center;
	margin-top:20px;
	}

	.artist-name {
	font-weight: 900;
	padding: 10px 0;
	}
}

/*---------------MAIN PAGE home.html----------------*/

body {
  opacity: 1;
  transition: 0.7s opacity;
}

body.fade {
    opacity: 0;
    transition: none;
    transition-timing-function: ease-in-out;
}

::selection {
  background: #d8ff8d;
}


html{
	cursor: url("../images/cursor.gif"), default;
}


body{
	font-family:  'Courier Prime', monospace;
	color: #000;
	font-weight:500;
	background-color:;
	cursor: url("../images/cursor.gif"), default;
}

.main-logo{
	width:150px;
	text-align:center;
}


h1{

	font-size:2em;
	font-weight:900;

	margin-bottom:10px;
	margin-top:50px;
}

h2{
	font-size:2em;
	font-weight:900;

	margin-bottom:10px;
	margin-top:50px;
}


button{
	border: 1.5px solid;
	border-radius:10px;
	background-color:#fff;
	color:#000;
	padding:10px;
	align-self:center;
	margin-bottom:10px;
	transition: border-color 0.2s, color 0.2s;
}

button:hover{
	border-color:#9ED342;
	color: #9ED342;

}


.btn-join{
	padding-top:20px;
}

.btn-nav{
	border: 2px solid;
	border-color: #000;
	border-radius:10px;
	color:#000;
	background-color: #9ED342;
	padding:10px;
	align-self:center;
	margin-bottom:10px;
	transition: color 0.2s, border-color 0.2s ;
	text-align: right;
}

.btn-nav:hover{
	border: 2px solid;
	border-color: #fff;
	color:#fff;
}

.btn-black{
	padding-top:20px;
}

.btn-black{
	border: none;
	border-radius:10px;
	color:#fff;
	background-color: #000;
	padding:10px;
	align-self:center;
	margin-bottom:10px;
	transition: color 0.2s;
}

.btn-black:hover{
	color:#9ED342;
}

.btn-black-green{
	border: none;
	border-radius:10px;
	color:#9ED342;
	background-color: #000;
	padding:10px;
	align-self:center;
	margin-bottom:10px;
	transition: color 0.2s;
}

.btn-black-green:hover{
	color:#fff;
}

.content-p{
	padding-bottom:30px;
}


section{
	background-color:#fff;
}

.main{
	padding:60px 0;
	width:100%;
}


.card {
	border: none;
	border-radius: 20px;
	flex-basis:calc(100% - 20px);
	max-width:calc(100% - 20px);
	position:relative;
	top:0;
	left:0;
	margin: 10px;

}

.card img {
	width:100%;
	height:100%;
	object-fit:contain;
	overflow:hidden;
	display:block;
}

.info{
  position: absolute;
  display:flex;
  flex-direction: column;
  flex:60%;
  max-width:60%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index:2;
  opacity:0;
  transition: .2s ease-in;
  color: #000;
  font-weight:;
}


.card:hover .info {
  opacity: 1;
}


.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .2s ease-in;
  background-color: #fff;
}

.card:hover .overlay {
  opacity: .8;
}

.circle{
	border-radius:50%;
}

a{
	color: #000;
	text-decoration: none;
	transition: color 0.2s;
}

a:hover{
	color: #000;
	text-decoration: none;
}

a, button{
	cursor: url("../images/cursor.gif"), default;
}


button{
	cursor: url("../images/cursor.gif"), default;
}


.desktop-nav{
	display:none;
}

.mobile-logo{
	margin:auto;
	text-align: center;
}

/*---------------- MEDIA----------------*/


@media only screen and (min-width: 768px) {
	.card{
		flex-basis:calc(33.33% - 20px);
		max-width:calc(33.33% - 20px);
	}
	.mobile-nav{
		display: none;
	}
}




/*----------------LANDING MEDIA----------------*/

@media only screen and (min-width: 768px) {
	.landing-logo{
		width:500px;
		height:350px;
	}

	.deco{
		display:block;
	}
}



/*----------------NAV BAR HORIZONTAL----------------*/


@media only screen and (min-width: 768px) {
	.desktop-nav{
		display:flex;
	}
	.mobile-logo{
		display:none;
	}
}
	.about{
	flex-basis: 60%;
	max-width:60%;
	margin:auto;
	}

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

	.about{
	flex-basis: 50%;
	max-width:50%;
	margin:auto;
	}

	.official-social {
	flex-basis: 40%;
	max-width: 40%;
	}

}

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

	.about{

	}

	.official-social {
	flex-basis: 50%;
	max-width: 50%;
	}

}