@font-face {
  font-family: altaRegular;
  src: url('../fonts/alta_regular.otf');
}

body {
	background-color: #d5948e;
}

header h1 {
	display: none;
}

.container {
	width: 60%;
	margin: 0 auto;
}

.logoVideoSlogan {
	margin-top: 4rem;
	display: grid;
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	grid-template-areas: "a b"
                         "c c";
}

.logo {
	grid-area: a;
}

.logo img{
	width: 80%;
}

.image {
	grid-area: b;
}

.image img {
	border-radius: 20%;
}


.slogan {
	padding: 1rem;
	grid-area: c;
}

h2 {
	font-family: altaRegular;
	font-size: 2.2rem;
	line-height: 1.2em;
	color: #524e4e;
	text-align: center;
}

.listButtons {
	display: flex;
	justify-content: center;
}

.socialmediaButtons {
	margin-top: 0.8rem;
}

.instagramIcon svg {
	width: 70px;
}

.youtubeIcon svg {
	width: 70px;
}

.listButtons .instagramIcon svg:hover path{
	fill:#f5eae2;
}

.listButtons .youtubeIcon svg:hover path, .listButtons .youtubeIcon svg:hover polygon{
	fill:#f5eae2;
}

.socialmediaButtons li {
	display:flex;
	align-items:center;
	list-style: none;
	margin-right: 1rem;
}

.socialmediaButtons a {
	display: block;
	text-decoration: none;
}

.site-footer a {
	margin-top: 5rem;
	margin-right: 1.5rem;
	display: inline-block;
	text-decoration: none;
	color: #f5eae2;
}

.site-footer {
	text-align: center;
}


@media screen and (max-width: 550px) {
	.logoVideoSlogan {
		display: block;
	}

	.container {
		width: 80%;
	}

	.logo img {
			width: 90px;
	}

	.logoVideoSlogan {
		margin-top: 2rem;
	}

	.image img {
		margin-top: 1.5rem;
	}

	.socialmediaButtons {
		margin-top: 0.2rem;
	}

	h2 {
		font-size: 1.8rem;
		margin-bottom: -3rem;
	}

}


@media screen and (max-width: 800px) {
	.logoVideoSlogan {
			grid-template-areas: "a c"
                         	"b b";
      grid-template-columns: 1.3fr 1fr;
      grid-column-gap: 1rem;
      grid-row-gap: 2.5rem;
    }

    h2 {
    	margin-top: 20%;
			font-family: altaRegular;
			font-size: 1.1rem;
			line-height: 1.1em;
		}

	.socialmediaButtons {
		margin-top: 4rem;
	}
}

@media screen and (max-width: 1050px) {

		h2 {
    	margin-top: 2%;
			font-family: altaRegular;
			font-size: 1.7rem;
			line-height: 1.2em;
	}