/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

/* text */

h1 {
	font-family: Alagard;
}

h2 {
	font-family: Alagard;
}

p {
	font-family: Alagard;
}

.lyrics h2 {
	font-family: Alagard;
	color: white;
	text-align: center;
}

.lyrics p {
	font-family: Alagard;
	color: white;
	text-align: left;
}

#navbar a {
	color: white;
	margin: 0;
	text-decoration: none;
	font-family: Alagard;
	font-size: 2em;
}

#navbar a:hover {
	color: #948765;
	margin: 0;
	text-decoration: none;
	font-family: Alagard;
	font-size: 2em;
}

#imgtext {
  color: white;
  font-size: 1.5em;
  font-family: Alagard;
}

/* div */

#navbar {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: black;
	width: 100%;
	justify-content: space-evenly;
	position: sticky;
	top: 0;
}

.page {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	height: auto;
	margin: auto;
	text-align: center;
	border: double;
}

#buttoncollective {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	height: auto;
	margin: auto;
	text-align: center;
	border: double;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-around;
}

.imagegallery {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	height: 33%;
	margin: auto;
	overflow-y: hidden;
	overflow-x: auto;
	border: double;
	display: flex;
	gap: 20px;
	flex-wrap: no-wrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-around;
	padding: 10px;
}

.imagegalleryitem {
	width: 10%;
	height: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: double;
}

.expandedimage {
	position: relative;
	display: none;
	width: 30%;
	height: auto;
	margin: auto;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
	border: double;
	border-color: white;
}

.videogallery {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	max-height: 450px;
	margin: auto;
	overflow-y: scroll;
	overflow-x: hidden;
	border: double;
	display: flex;
	gap: 20px;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-around;
	padding: 10px;
}

.videogalleryitem {
	width: 50%;
	height: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: double;
}

.writinggallery {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	height: 450px;
	margin: auto;
	overflow-y: auto;
	overflow-x: hidden;
	border: double;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-wrap: no-wrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-around;
	padding: 10px;
}

.musicgallery {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 65%;
	max-height: 450px;
	margin: auto;
	overflow-y: scroll;
	overflow-x: hidden;
	border: double;
	display: flex;
	gap: 20px;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-around;
	padding: 10px;
}

.song {
	width: 50%;
	height: 400px;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: double;
	gap: 10px;
}

.lyrics {
	width: 100%;
	height: 200px;
	border: solid;
	border-width: 1px;
	border-color: white;
	overflow: auto;
}

/* img */

.imagegalleryitem img {
	opacity: 0.5;
	cursor: pointer;
}

.imagegalleryitem img:hover {
	opacity: 1;
}

.

/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('../media/mediabg.jpg'); 
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.button {
	width: 20%;
	margin: 5px;
	font-size: 2em;
	background-color: black;
	border: outset;
	border-color: black;
	font-family: Alagard;
	color: white;
	text-decoration: none;
}

.button:visited {
	color: white;
	text-decoration: none;
}

.button:hover {
	color: #554c39;
	text-decoration: none;
}

.button:visited:hover {
	color: #554c39;
	text-decoration: none;
}

.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

iframe {
	width: 90%;
	min-height: 50%;
	margin: auto;
}