* {
	box-sizing: border-box;
}

@font-face {
	font-family: "Montclar";
	src: url("fonts/Montclar.otf");
}

body {
	margin: 0;
	font-family: "Trebuchet MS";
}
header {
	padding-top: 15px;
	text-align: right;
}

header a {
	text-decoration: none;
	color: white;
	margin: 0 15px;	
}
section {
	height: 100vh;
}

.section-main {
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("img/main-bg.jpg");
}

h1 {
	font-family: "Montclar";
	text-align: center;
	font-size: 100px;
}
.section-band {
	padding-top: 80px;
	background-color: black;
	color: white;
	text-align: center;
}

.artists {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
}

.artist img {
	width: 225px;
}

.container {
	margin: 0 auto;
	width: 1024px;
}
.artist__name {
	margin: 5px 0 5px;
	font-size: 30px;
	font-weight: 900;
}
.artist__job{
	margin: 5px 0 5px;
}
.artist__desc{
	text-align: left;
}
.albums {
	display: flex;
}
.album {
	position: relative;
	padding-top: 205px;
	text-align: left;
	background: #25058c;
	height: 256px;
	width: 256px;
	padding-left: 15px;
	overflow: hidden;
}
.album img {
	transition: .2s;
	position: absolute;
	left: 0;
	top: 0;
	max-width: 100%;
	min-width: 256px;
}
.section-music,
.section-video {
	padding-top: 80px;
	text-align: center;
	background-color: black;
	color: white;

}

.album:hover img {
	top: -50px;
}
h2 {
	position: relative;
	margin-bottom: 50px;
}

h2:after {
	display: block;
	content: "";
	position: absolute;

	width: 100px;
	height: 1px;
	background-color: white;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	bottom: -10px;
}

.btn {
	margin: 40px auto 0;
	padding: 10px 20px;
	width: auto;
	font-size: 15px;
	border-radius: 10px;
	transition: .3s;
	border: 2px solid black;
	box-shadow: 0 0 40px 20px black;
	display: inline-block;
	background-color: #565656;
}

.btn:hover {
	box-shadow: 0 0 80px 40px #25058c;
}/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}