@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Karla:wght@400;700&family=Lexend+Deca&family=Open+Sans&family=Poppins:wght@400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Karla:wght@400;700&family=Lexend+Deca&family=Open+Sans&family=Poppins:wght@400;600&display=swap');


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Big Shoulders Display', cursive;
	font-family: 'Karla', sans-serif;
	font-family: 'Lexend Deca', sans-serif;
	font-family: 'Open Sans', sans-serif;
	font-family: 'Poppins', sans-serif;
	background-color: hsl(257, 40%, 49%);
	background-image: url(./images/bg-desktop.svg);
	background-repeat: no-repeat;
	background-size:100%;
	
}

main{
	max-width: 1440px;
	margin: 0 auto;
}

.container{
	display: flex;
	flex-direction: column;
}

nav{
	padding: 2rem 0 0 3rem;
}

nav img{
	width:12rem;
}

.main{
	display: flex;
	flex-direction: row;
}

.illustration{
	padding: 4rem 0 0 3rem;
	max-width: 44rem;
}

.illustration img{
	max-width:100%;
}

.website-details{
	max-width:37rem;
	padding: 6rem 3rem 0 3rem;
	color:white;
	display: flex;
	flex-direction: column;
	gap:1.7rem;
}

.website-details h1{
	font-size: 2.3rem;
}

.website-details p{
	font-size: 1rem;
	font-weight: 300;
	color:rgba(255, 255, 255, 0.829);
}

.call-to-action{
	display: flex;
	flex-direction: column;
	gap:1.4rem;
}

button{
	padding:1rem;
	width:12rem;
	border:0;
	border-radius: 4rem;
	font-size: 1rem;
	transition: all 300ms ease;
}

button a{
	text-decoration: none;
	color: hsl(257, 40%, 49%);
	transition: all 300ms ease;
}

button:hover, button:active{
	cursor: pointer;
	background-color: hsl(300, 69%, 71%);
}

button:hover a, button:active a{
	color:white;
} 

.social-media-icons{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
	gap:1rem;
	padding: 0 3rem 0 0;
	text-decoration: none;
}

i{
	color:white;
	border: 2px solid white;
	width: 3rem;
	height: 3rem;
	text-align: center;
	border-radius: 50%;
	line-height: 1rem;
	padding: 0.9rem;
	vertical-align: middle;
	transition: all 300ms ease;
}

i:hover{
	color:hsl(300, 69%, 71%);
	border: 2px solid hsl(300, 69%, 71%);
}

@media screen and (max-width: 1136px) {
	.main{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap:7rem;
	}
	.container{
		display: flex;
		flex-direction: column;
		gap:7rem
	}
	.illustration{
		display: flex;
		flex-direction: column;
		justify-content:center;
		align-items: center;
		padding: 0;
	}
	.illustration img{
		max-width: 70%;
	}
	.website-details h1, .website-details p{
		text-align: center;
	}
	.website-details, .call-to-action{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 2rem;
	}
	.social-media-icons{
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 2rem;
		/*padding: 4rem 0;*/
	}
}

/*

@media screen and (max-width: 620px) {
	.website-details{
		width:20rem;
	}
	.website-details h1{
		font-size: 2rem;
	}
	.website-details p{
		font-size: 1rem;
	}
}