html, body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

/* -----------------------------
-----------Header--------------- 
-------------------------------*/ 
.site-header {
	position:fixed;
	top:0;
	left: 0;
	right: 0;
	height: 8vh;
	min-height: 45px;
	width: 100%;
	z-index: 5;
	background-color: white;
	opacity: 0.9;
    box-shadow: 0px 1px 5px grey;
}

.site-header h1 { 
	font-size: 2.5em;
	padding:0px;
	margin: 0px;
	display: block;
	float: left;
	line-height: 8vh;
	height: 8vh;
	margin-left: 2vw;
	color: black;
	font-family: 'Chela One', cursive;
}

.site-header h1:hover {
	font-style: italic;
}

#main-logo {
	width: auto;
	height: 7vh;
	float: left;
	display: block;
	padding-left: 2vw;
	margin-top: .5vh;
}

/* --- Navigation --- */
.site-nav {
	float:right;
	height: 8vh;
	line-height: 8vh;
}

.site-nav a {
	margin-right: 1vw;
	color: #CF9E8f;
	font-weight: 900;
	text-decoration: none;
	font-size: 0.8em;
}

.site-nav a:hover {
	font-style: italic;
	
}

/* --- Mobile Nav --- */
.mobile-nav {
	display: none;
	background-color: white;
	width: 220px;
	height: 155px;
	position: fixed;
	right: 0;
	top: 8vh;
	opacity: 1;
}

.mobile-nav a {
	clear: left;
	float: left;
	display: block;
	color: black;
	text-align: center;
	width: 200px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-weight: 900;
	height: 30px;
	font-size: 0.7em;
	color: #CF9E8f;
}

.mobile-nav a:hover {
	text-decoration: underline;
}

.burger {
    float: right;
    display: none;
    cursor: pointer;
    height: 4vh;
    line-height: 4vh;
    margin-right: 2vw;
    padding-top: 1vh;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}

.change .mobile-nav {
	display: block;
}

@media (max-width:650px) {
	.burger {
		display: inline-block;
	}
	
	.site-nav {
		display: none;
	}
	
	.blog-title {
		margin: 0 auto;
		text-align: center;
	}
}

@media (max-width: 760px) {
	
	.site-nav a {
		font-size: 0.7em;
	}
	.site-header h1  {
		font-size: 2.3em;
	}

}

@media (max-width: 730px) {
	
	.site-header h1  {
		font-size: 2.1em;
	}
	
}

@media (max-width: 700px) {
	
	.site-header h1  {
		font-size: 1.8em;
	}

}

/*--- Player Styles ---*/
audio {
	margin-top: 1.5vh;
	margin-left: 2vw;
}

#play-pause-button {
	font-size: 25px;
	cursor: pointer;
	margin-left: 2vw;
	line-height: 8vh;
}


/* -----------------------------
-----------Content-------------- 
-------------------------------*/ 
/*--- Universal ---*/
.container {
	width: 100%;
	margin-top: 8vh;
}

/*--- Home ---*/
.home img {
	width: 100%;
	height: auto;
	padding: 0
}

/*--- Releases ---*/
.releases {
	width: 100%;
	margin-top: 8vh;
	background-color: #8e8662;
}

.releases-flex {
    display: flex; /* Make products flex in row direction (default) */
  	flex-wrap: wrap; /* Make products overflow on new row */
  	justify-content: space-around; /* Or space-between or space-around */
  	padding-top: 8vh;
  	background-color: white;
  	height: 100%;
  	padding-bottom: 12vh;

}

.single-release-flex {
    display: flex; /* Make products flex in row direction (default) */
  	flex-wrap: wrap; /* Make products overflow on new row */
  	justify-content: center; /* Or space-between or space-around */
  	padding-top: 8vh;
  	background-color: #CFCDB6;
  	height: 100%;
  	padding-bottom: 12vh;

}

.single-release-flex > section {
    flex: 1 1 0; /* Prevent the extra space around content */
    text-align: center; /* Align text on center */
    display: flex; /* Display as flex */
    flex-direction: column; /* Display flex in column */
    align-items: center; /* Align items on center */
    max-width: 800px; /* Set max-width so the last items will behave in a more traditional way */
    margin-bottom: 50px;
    margin-left: 1vw;
    margin-right: 1vw;
    height: auto;
}

section img {
	width: 35vw;
	height: auto;

}

section {
	margin-bottom: 50px;
}
section h2 {
    margin-top: 0px;
    padding-top: 5px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 700;
    font-size: 1.3em;
    font-family: 'Space Mono', monospace;

}

section a {
    color: black;
}

section p {
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-family: 'Space Mono', monospace;
}


/* -- Single Release --*/ 

/* -- Single Left --*/ 
.single-left {
    width: 45vw;
    height: auto;
   
}
.single-left img {
    width: 40vw;
    height: auto;
}

/* -- Single Right --*/ 
.single-right {
    width: 40vw;
    margin-left: 5vw;
    
}
.single-right h2 {
    margin-top: 0px;
    font-family: 'Space Mono', monospace;

}
.single-right h3 {
    margin-top: 0px;
    font-family: 'Space Mono', monospace;

}

.single-right a {
	font-family: 'Space Mono', monospace;
	color: #CF9E8f;
	font-weight: 700;
    font-size: 1.2em;
}

.single-right p {
  	text-align: left;
  	font-family: 'Space Mono', monospace;
}

#return {
	font-weight: 700;
    font-size: 1.2em;
    display: block;
    margin-top: 8vh;
}

@media (max-width:650px) { 
  	.releases-flex {
		padding-top:4vh;	
	}
	
	.single-left {
        width: 100%;
    }
    
	.single-left img {
		display: block;
    }
    
    .single-right {
        margin: 0 auto;
        margin-top: 5vh;
     
		width:94vw;
        display: block;
    }
 
    .releases-flex > section {
        
        display: block;
        clear: both;
        margin: 0 auto;
        flex: none;
    }

}

@media (max-width: 645px ) {
    .single-left img {
        width: 90vw;
        margin: 0 auto;
    }
    
	section img {
        width:90vw;
        margin: 0 auto;
    }

}

	
/* -- About opportunites --*/ 

	
	.content-page {
		margin-top: 12vh;
		font-family: 'Space Mono', monospace;

		
	}
	.columnsContainer {
		margin-left: 5vw;
		margin-right:5vw;
		
	}
	
	.leftColumn {
        float: left;
        width: 45%;
    }
    
    .rightColumn {
        float: right;
        width: 45%;
    }
    
    .rightColumn img, .leftColumn img {
        max-width: 100%;
        height: auto;
    }
    
    .columnsContainer:after {
        content:"";
        display: table;
        clear: both;
    }

	
	    @media screen and (max-width: 480px) {
        .leftColumn, .rightColumn {
            float: none;
            width: auto;
        }
    }




/* -----------------------------
----------- Footer ------------- 
-------------------------------*/ 

 .site-footer {
	width: 100%;
	height:5vh;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: grey;
	position: fixed;
	bottom: 0;
	opacity: 0.8;

}
.site-footer p {
	display: block;
	margin:0 auto;
	text-align: center;
	height: 5vh;
	line-height: 5vh;
}

