html{
	width: 100%;
	height: 100%;
}

body{
	width: 100%;
	height: 100%;
	margin: 0;
	background-image: linear-gradient(to bottom right, #AA9CBA, #9E9CBA);
	background-attachment: fixed;
	color: floralwhite;
}


section{
	display: block;
	scroll-behavior: smooth;
}

section#home{
	height: 100vh;
	width: 100%;
	text-align: center;
	position: relative;

}

section#home h1{
	font-size: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

section#home h3{
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding-top: 150px;
}

section#about{
	width: 100vw;
	height: 100%;
	text-align: center;
}

section#about h2{
	font-size: 35px;
}

section#about p{
	font-size: 20px;
	padding-left: 30px;
	padding-right: 30px;
}

section#about img{
	width: 170px;
	height: auto;
}

section#portfolio{
	width: 100vw;
	height: 100%;
	text-align: center;
}

section#portfolio h2{
	font-size: 35px;
	display: block;
}

section#portfolio ul{
	list-style-type: none;
	display: flex;
	text-align: center;
}

section#portfolio p{
	font-size: 20px;
	color: floralwhite;
}

seciton#portfolio li{
	padding-left: 40px;
	padding-right: autp;
}

section#portfolio img{
	height: 300px;
	padding-left: 40px;
	padding-right: auto;
}

seciton#portfolio h3{
	color: floralwhite;
	margin-top: 300px;
}

section#contact{
	width: 100%;
	text-align: center;
}

section#contact h2{
	font-size: 35px;
	display: block;
	text-align: center;
}

section#contact img{
	width: 50px;
	margin-bottom: 30px;
}


@media screen and (max-width: 700px){
	section#home h1{
	width: 100%;
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	}

	section#home h3{
	font-size: 15px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding-top: 150px;
	}
}