@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,100&display=swap');


body {
  font-family: 'Lato', sans-serif;
  height: 100vh;
  width: 100vw;
}

.wrapper {
	width: 100vw;
	height: 100vh;
	display: flex;
	background: url("../img/hu-chen-60XLoOgwkfA-unsplash.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-content {
	width: 70vw;
	height: 100vh;
}

.hero-title {
	padding: 5px;
	color: #fff;
	font-size: 1.5em;
	font-weight:900;
}

.hero-subtitle {
	color: #eee;
	padding: 10px;
	font-size: 1em;
}

.hero-slogan {
	padding: 10px;
	font-size: 2em;
	color: #eee;
	font-weight: 900;
	text-shadow: 1px 2px rgba(0, 0, 0, 0.411);
}

.wrapper-brand {
	width: 28vw;
	height: 100vh;
	display: flex;
	background-color: rgba(10, 9, 9, 0.274) ;
}

.wrapper-brand-content {
	display: flex;
	width: 28vw;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}

.logo {
	padding-bottom: 20px;
	border-radius: 50%;
	width: 250px;
	height: 250px;
}

.social-media_list {
	display: flex;
	align-items: flex-end;
	justify-content: end;
}

.social-media_list li a {
	padding: 10px;
	color: #fff;
	text-decoration: none;
}

.social-media_list li a:hover {
	padding: 10px;
	color: rgb(241, 245, 18);
	text-decoration: none;
}

@media (min-width: 901px) {
	.slogan-mobile {
		display: none;
	}
}

@media (max-width: 900px) {
	.wrapper-content {
		display: none;
	}

	.wrapper-brand {
		width: 100vw;
	}

	.wrapper-brand-content {
		margin-top: 20px;
		width: 100vw;
		justify-content: flex-start;
	}

	.slogan-mobile {
		text-align: center;
	  font-size: 1.6em;
		letter-spacing: 1px;
		padding-top: 20px;
		color: #110a02;
		font-weight: 800;
	}
}
