@charset "UTF-8";
/* hero Section */
section.hero__section {
	padding: 0 1rem 5rem 1rem;
	max-width: 100%;
	min-height: 100svh;
	color: white;
	background-image: url('../../images/mountain.svg'),
		linear-gradient(deepskyblue, green);
	background-size: clamp(160px, 100vw, 800px) auto, cover;
	background-repeat: no-repeat;
	background-position: 100% bottom, center;
	border-radius: 0 0 2rem 2rem;
	justify-content: center;
	align-items: flex-start;
}
h2.slogan {
	margin: 0 0 2rem 5rem;
	font-size: 6rem;
	color: white;
	text-align: left;
	line-height: 1;
}
span.slogan__top {
	font-size: 6rem;
	font-weight: bold;
}
span.slogan__sub {
	font-size: 3rem;
}
p.slogan__explain {
	margin: 0 0 0 5rem;
}

/* About Me Section */
div#AboutMe__img {
	width: 300px;
	height: 300px;
	border-radius: 20rem;
	background-color: lightgray;
	display: flex;
	justify-content: center;
	align-items: center;
}
section.AboutMe__section p {
	padding: 1.5rem;
	width: 100%;
	max-width: 60rem;
}

/* skills Section */
section.skills__section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* lang area */
section.lang__area h4 {
	align-self: center;
}
li.html {
	border: 0;
	color: white;
	background-color: MediumSeaGreen;
}
li.css {
	border: 0;
	color: white;
	background-color: Indigo;
}
li.js {
	border: 0;
	background-color: yellow;
}
li.ts {
	border: 0;
	color: white;
	background-color: DodgerBlue;
}
li.sql {
	border: 0;
	color: white;
	background-color: darkred;
}
li.react {
	border: 0;
	background-color: DeepSkyBlue;
}

/* Dev learn area */
dt.title {
	border-bottom: 1px solid dimgray;
	font-weight: normal;
}
dd.item {
	padding: 1rem 0 1rem 0;
	font-size: 2rem;
	font-weight: bold;
}
dd.explain {
	margin: 0 0 2rem 0;
}

/* portfolio Section */
section.portfolio {
	max-width: 90%;
	background-color: LightBlue;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.portfolio dl {
	display: grid;
	grid-template-columns: 1fr 2fr;
}
section.portfolio dt {
	margin: 2rem;
}
section.portfolio dd {
	padding: 2rem;
}
section.portfolio a {
	font-weight: bold;
}

/* Career Section */
section.career {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.career dl {
	display: grid;
	grid-template-columns: 1fr 2fr;
}
section.career dt {
	margin: 2rem;
	font-weight: bold;
}
section.career dd {
	margin: 2rem;
}

/* Tablet Contents */
@media screen and (max-width: 1280px) {
	h2.slogan {
		margin: 0 0 2rem 2rem;
	}
	span.slogan__top {
		font-size: 4rem;
		font-weight: bold;
	}
	span.slogan__sub {
		font-size: 3rem;
	}
	p.slogan__explain {
		margin: 0 0 0 2rem;
	}

	li:hover {
		pointer-events: none;
	}
}

/* SmartPhone Contents */
@media screen and (max-width: 500px) {
	h2.slogan {
		margin: 0 0 2rem 0;
	}
	span.slogan__top {
		font-size: 3rem;
		font-weight: bold;
	}
	span.slogan__sub {
		font-size: 2rem;
	}
	p.slogan__explain {
		margin: 0;
		font-size: 1rem;
	}

	li:hover {
		pointer-events: none;
	}

	section.portfolio dl {
		display: flex;
		flex-direction: column;
	}

	section.career dl {
		display: flex;
		flex-direction: column;
	}
}
