@charset "utf-8";

/* add import code from google fonts */
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Gabarito:wght@400;600&family=Roboto:wght@300&display=swap');


/* this code allows the smoooth scrolling and add a space on top of each section */
html {
	scroll-padding-top:100px;
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box; /* select all elements and remove all padding and margin */
	padding: 0;				/* box-sizing property is to allow any elements to collapse if the size is greater than the parent element size */
	margin: 0;
}

body {
	font-family: 'Roboto', sans-serif;
}

/* follow this rule to style all elements */

header {
	min-height: 100px;
	background-color:aliceblue;
	position: sticky;
	top: 0;
	left: 0;
}

.logo {
	min-height: 5%;
	min-width: 5%;
	position: absolute; /* this position allows the logo to sit on the left */
	padding: 1% 2%;
	max-height:60pt;
	width: auto;
}

.navi {
	display: flex;
	list-style: none;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding-top: 3%;
	gap: 3%;
}

.cover{
	height:auto;
	max-width: 100%;
	left: inherit;
	padding: 0,0,0,0;
	align-content: center;
	align-self: center;
}

.image{
	align-content: center;
	align-self: center;
	max-height: 90%;
	max-width: auto;
	margin-bottom: 5%;
}
.navi a:link {
	color:#5E0E8B;
	text-decoration: none;
	font-size: 1.25em;
}

.navi a:hover {
	color:coral;
	border-bottom: 2px solid coral;
	padding-bottom: 2%;
	transition: 0.3s ease;
}

*{box-sizing: border-box}

.member{
	display: flex;
	align-self: center;
	padding:2%;
 	width:100%;
	gap:3%;
}

.img {
	height:auto;
	width:100%;
}


div.scroll-container {
  background-color: #474747;
  overflow: auto;
  white-space: nowrap;
  padding: 5px;
}

.background {
	width: 100%;
	height: 100%;
}

.gallery {
  	padding: 10px;
	height:30%;
	width:30%;
}
.ytb {
	padding-left: 5%;
	height:100px;
	width: auto;
	dispaly:flex;
	
}
.container {
	width: 100%;
	position: relative;
}

section {
	min-height: 100vh;
	min-width: 90%;
	margin: auto;
}

h1 {
	font-size:2.2em;
	text-align: center;
	text-transform: capitalize;
	padding-top: 3%;
	font-family: 'Gabarito', sans-serif;
	letter-spacing: 2px;
	color: aliceblue;
}

h2 {
	font-size: 1.45em;
	text-align: center;
	padding-top: 2%;
	padding-bottom: 2%;
	font-family: 'IBM Plex Serif', serif;;
	letter-spacing: 2px;
	color:aliceblue;
}

.intro {
	text-align: left;
	margin-left: 20px;
	font-size: 1.45em;
	padding-top: 2%;
	letter-spacing: 2px;
	color:aliceblue;
	font-family: 'Gabarito', sans-serif;
}

h3 {
	text-align: center;
	font-size: 1.75em;
	letter-spacing: 2px;
	color:aliceblue;
}

.p{
	text-decoration-color: aliceblue;
	text-align: center;
	font-size: 1.45em;
	letter-spacing: 2px;
	color:aliceblue;
}
.active {
	color: aqua;
	border-bottom: 2px solid aqua;
}

.row {
	display: flex;
	min-width: 95%;
	margin: auto;
	gap:3%;
	justify-content: center;
	align-content: center;
}

.column {
	min-width: 45%;
	min-height: 450px;
	padding-top: 3%;
	margin: auto;
}

#home {
	background-color:  #000000;
}

#about {
	background-color:#000000;
}

#MV {
	background:#000000;
}
#gallery {
	background-color:#000000;

}

#contact {
	background-color: #000000;
}

footer {
	padding: 2.5%;
	background: #000000;
}

@media only screen and (max-width:996px) {
	html {
	scroll-behavior: smooth;
	scroll-padding-top:100px;
	}
	
	.logo {
		position: relative;
	}
	
	.row {
		display: block;
	}
	
	.navi li{
		padding-bottom: 2.5%;
	}
	
	h1, h2, h3 {
		padding-top: 2%;
	}
}
