*{
	box-sizing: border-box;
	margin: 0;
	padding:0;
	font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

nav {
	height: 80px;
	background: #4682b4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0rem calc((100vw - 1300px) / 2);
}

.logo {
	color: #f7e7ce;
	font-size: 1.5rem;
	font-weight: bold;
	font-style: italic;
	padding: 0 2rem;
}

nav a{
	text-decoration: none;
	color: #f7e7ce;
	padding: 0 1.5rem;
}

.hero {
	background: #4682b4;

}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 95vh;
	padding: 3rem calc((100vw - 1300px) / 2);
}

.column-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #000;
	padding: 0rem 2rem;
}

.column-left h1 {
	margin-bottom: 1rem;
	font-size: 3rem;
	opacity: 0;
	animation: fadeIn 3s ease-in-out forwards;
}

.column-left p {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	line-height: 1.5;
	opacity: 0;
	animation: fadeInP 3s ease-in-out forwards;
	animation-delay: 0.7s;
}

.label {
	display: inline-block;
	margin-top: 60px;
	margin-bottom: 40px;
	padding: 5px 10px;
	border: 4px solid black;
	border-radius: 30px;
	background-color: black;
	color: white;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	animation: fadeInP 3s ease-in-out forwards;
	animation-delay: 1.5s;
	
}

.song {
	margin-bottom: 2rem;
	margin-top: 20px;
	font-size: 1.5rem;
	line-height: 1.5;
	opacity: 0;
	animation: fadeInP 3s ease-in-out forwards;
	animation-delay: 1.7s;
}


button {
	padding: 1rem 3rem;
	font-size: 1rem;
	border: none;
	color: #4682b4;
	background: #000;
	cursor: pointer;
	border-radius: 50px;
	opacity: 0;
	animation: fadeInButton 2s ease-in-out forwards;
	animation-delay: 1.5s;
}

button:hover {
	background: #fff;
	color: #000;
}

.column-right {
	display: flex;
	justify-content:center;
	align-items: center;
	padding: 0rem 2rem;

}

.hero-image {
	width: 95%;
	height: 55%;
	animation-duration: 3s;
	animation-name: slideIn;
}

@media screen and (max-width: 768px) {
	.hero-container {
		grid-template-columns: 1fr;

}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
}
	100% {
		opacity: 1;
}
}

@keyframes fadeInP {
	0% {
		opacity: 0;
}
	100% {
		opacity: 1;
}
}
@keyframes slideIn {
	0% {
		margin-left: 400%;
}
	100% {
		margin-left: 0%;
}
}


@keyframes fadeInButton {
	0% {
		opacity: 0;
}
	100% {
		opacity: 1;
}
}