@charset "UTF-8";

html{
	scroll-padding-top: 100px;
	scroll-behavior: smooth;
}


*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}


body{
	font-family: "Poppins", sans-serif;
  	font-weight: 400;
}

h1{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-size: 100px;
  	font-weight: 1000;
	padding: 2%;
	text-align: Left;
}

h2{
	font-family: "Inter", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
	font-size: 50px;
	padding: 2%;
	text-align: center;
}

h3{
	font-family: "Inter", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
	font-size: 60px;
	padding: 2%;
	text-align: center;
}

p{
	font-size: 28px;
	line-height: 1.5em;
}

.img-icon{
	width: 70%;
	height: auto;
}

.container{
	width: 100%;
	position: relative;
}


header{
	min-height: 50px;
	position: sticky;
	background-color: whitesmoke;
	top: 0;
	left: 0;
	z-index: 100;
}

.navi{
	display: flex;
	list-style: none;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	padding: 3% 3% 0;
	gap: 3%;
}

.navi a:link, a:active{
	color: black;
	text-decoration: none;
	font-size: 1px;
	font-family: "Inter", sans-serif;
}

.navi a:hover, a:visited{
	color: silver;
	border-bottom: 2px solid rgba(208,128,21,1,00);
	padding-bottom: 2%;
	transition: 0.3s ease;
}

.row{
	display: flex;
	min-width: 100%;
	margin: auto;
	gap:1%;
	justify-content: center;
	align-content: center;
	text-align: center;
	padding: 20px;
}

#education{
	justify-content: center;
	text-align: center;
	background-color: black;
	color: white;
}

#contact{
	justify-content: center;
	text-align: center;
	background-color: whitesmoke;
	color: black;
}

.pic{
	justify-content: center;
}


footer{
	text-align: center;
	color: rgba(23,109,192,1,00);
	font-family: "Inter", sans-serif;
	background-color: whitesmoke;
}

@media only screen and (max-width:996px){
	html{
		scroll-behavior: smooth;
		scroll-padding-top: 120px;
	}
	
	.btn_home{
		marigin-top: block;
	}
	.row{
		display: block;
	}
	
	.navi a:link{
		font-size: 1em;
	}
	
	h1{
		text-align: left;
		font-size: 400%;
	}
	
	h2{
		text-align: center;
		font-size: 250%;
	}
	
	h3{
		text-align: center;
		font-size: 300%;
	}
	
	.pic img{
	width: 100%;
	height: auto;
}

	.sns img{
	width: 	10%;
	height: auto;
}
	
	p{
		text-align: center;
		font-size: 100%;
	}
}