html{
	padding: 0;
}

body{
	box-sizing: border-box;
	background-color:#f2f2f2!important;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

#container{
	box-sizing: border-box;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
}
	
	#container img{
		max-width: 200px;
	}

.hero{
	box-sizing: border-box;
	width: 100%;
	height: 66vh;
	padding: 2rem;
	background-image: url("../img/hero-jazz.webp");
	background-position: center center;
	background-size: cover;
}
	
	.hero-info{
		max-width: 50%;
	}

	.hero-info h1{
		color: #f2f2f2;
		font-family: "swear-display", serif;
		font-weight: 800;
		font-style: normal;
		font-size: clamp(3rem, 6vw, 7vw);
		line-height: 95%;
	}

		.hero h1 span{
			font-family: "swear-display", serif;
			font-weight: 800;
			font-style: italic;
		}

.stripe{
	box-sizing: border-box;
	width: 100%;
	height: 100px;
	padding: 2rem;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.caption{
	max-width: 200px;
	font-size: 0.8rem;
	font-family: "degular", sans-serif;
	font-weight: 400;
	font-style: normal;
}
	.caption span{
		font-weight: 600;
	}

@media screen and (max-width: 1024px){

.hero{
	height: 90vh;
}

	.hero-info{
		max-width: 100%;
	}

	.stripe img{
		width: 150px;
	}
}