* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333333;
	min-height: 100vh;
	display: flex;
	flex-direction:column;
	justify-content: space-between;
}

section.hero {
	background: linear-gradient(270deg, #000000, #555);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
	height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section.hero img {
	color: #ffffff;
	font-size: 40px;
	margin: 0;
	text-align: center;
	height: 30vh;
	opacity: 0.8;
}

section.hero p {
	color: #ffffff;
	font-size: 24px;
	text-align: center;
	margin: 20px 0;
	
}

section.hero .cta {
	background-color: #ffffff;
	color: #333333;
	font-size: 16px;
	padding:10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
}

section.hero .cta:hover {
    background-color: #333333;
    color: #ffffff;
}

section.socials{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.social-icon{
	width: 80px;
	height: 80px;
}


@media only screen and (max-width: 600px) {
	section.hero img {
		color: #ffffff;
		font-size: 40px;
		margin: 0;
		text-align: center;
		width: 80vw;
		margin: 0 auto;
		height: initial;
		opacity: 0.8;
	}
	section.hero {
		height: 100vh;
	}
  }

.mixes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.mix-item {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

footer {
background-color: #333333;
color: #ffffff;
padding: 20px;
text-align: center;

}

footer p {
font-size: 14px;
margin: 0;
}

nav ul {
flex-direction: column;
justify-content: center;
align-items: center;
}
    
nav ul li {
	margin: 10px 0;
}

section.hero h1 {
	font-size: 32px;
}

section.hero p {
	font-size: 20px;
}

.mixes-grid {
	grid-template-columns: repeat(2, 1fr);
} 