*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	font-family: 'Poppins', sans-serif;
	font-family: 'Sonsie One', cursive;
}

#wrapper {
	height: 100vh;
	width: 100vw;
}

/* nav bar */
.parent {
	background: linear-gradient(180deg, #FDFBFB 0%, #F8F5F9 100%);
	height: 95px;
	width: 100vw;
	border-bottom: 0.5px solid #D8D8D8;
	/*position: fixed;*/
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 10% 0;
}

.logo {
	font-family: Sonsie One;
	color: #31344B;
	font-size: 20px;
	/*font-weight: bold;*/
}

.logo-a {
	color: #31344B;
	text-decoration: none;
}

nav ul {
	width: 100%;
	margin-right: 2%;
	display: flex;
	justify-content: flex-end;
}

nav ul li {
	display: inline-block;
	list-style: none;
	padding: 1% 3%;
}

nav ul li a {
	color: #31344B;
	text-decoration: none;
	font-family: Poppins; 
	font-style: italic;
	font-weight: 700;
	font-size: 16px;
}

/*nav ul li a:hover { 
	color: #FD75FF;
	transition: .3s;
} */

.nav-button-a {
	font-family: Poppins;
	font-style: italic;
	font-weight: 700;
	font-size: 16px;
	color: #31344B;
	text-decoration: none;
}

.nav-button-f {
	width: 220px;
	height: 58px;
	background: linear-gradient(180deg, #FDFBFB 0%, #F8F5F9 100%);
	box-shadow: -10px -10px 40px #FFFFFF, 5px 5px 30px rgba(0, 0, 0, 0.2), inset -5px -5px 30px rgba(255, 255, 255, 0.25), inset 5px 5px 30px rgba(115, 115, 115, 0.15);
	border-radius: 14px;
	border: none;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-button-f:hover {
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1), inset -5px -5px 8px rgba(255, 255, 255, 0.1), inset 5px 5px 8px rgba(115, 115, 115, 0.15);
}

.nav-link {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	top: 110%;
	left: 0;
	background-Color: #31344B;
	transform-Origin: bottom right;
	transition: transform .4s cubic-bezier(.86,0,.07,1);
}

.nav-link:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}


/* header */
.head {
	padding-top: 3%;
	margin: 0 10%;
	height: 500px;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.head-bc {
	background: linear-gradient(180deg, #F8F5F9 0%, #FAF8FA 7.64%, #F9F6F9 12.33%, #F8F6F9 14.4%, #F8F5F9 14.4%, #F8F5F9 14.41%, #F8F5F9 15.82%, #F8F5F9 16.46%, #F8F5F9 16.47%, #F8F5F9 16.48%, #F7F5F9 16.49%, #F4F1F7 25.87%, #F4F1F7 25.88%, #F3F0F7 29.51%, #F2EFF6 31.59%, #F2EFF6 31.6%, #F1EEF6 33.68%, #ECE8F4 48.61%, #DDD8ED 92.01%, #DDD7ED 94.16%, #DCD7ED 94.17%, #DCD6ED 94.18%, #DAD4EC 100%);
}

.svg-wave {
	margin: -5px 0;
	width: 100%;
    height: auto;
	display: block;
}

.head-p {
	max-width: 540px;
}

.head-p01 {
	font-family: 'Inter';
	font-size: 16px;
	color: #31344B;
	
}

.head-p02 {
	font-family: 'Poppins';
	font-size: 70px;
	color: #31344B;
	line-height: 75px;
}

.head-p03 {
	font-family: 'Poppins';
	font-size: 30px;
	color: #31344B;
	line-height: 30px;
}

.head-p04 {
	font-family: 'Inter';
	font-size: 16px;
	color: #31344B;
	margin-top: 1em;
}

.head-profile-frame {
	border-radius: 50%;
	width: 404px;
	height: 404px;
	background: linear-gradient(180deg, #F3F0F7 0%, #DDD7ED 100%);
	box-shadow: -15px -29px 60px #FFFFFF, 22px 28px 60px rgba(0, 0, 0, 0.5), inset 21px 25px 50px rgba(121, 121, 121, 0.15), inset -23px -19px 50px rgba(255, 255, 255, 0.25);
}


/* main */ 
.project {
	display: flex;
    flex-direction: column;
    align-items: center;
}

h1  {
	display: none;
}

.section01 {
	margin-bottom: 10%;
}

.h2-section01 {
	width: 1078px;
	margin-bottom: 3%;
	font-family: 'Poppins';
	font-size: 70px;
	line-height: 105px;
	color: #31344B;
}

.section01-box {
	width: 1078px;
	height: 890px;
	padding: 3em;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 15px 15px 50px rgba(0, 0, 0, 0.2), inset -10px -10px 30px #FFFFFF, inset 7px 7px 50px rgba(120, 120, 120, 0.1);
	border-radius: 15px;
}

.section01-main {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.psection01-image {
	width: 860px;
}

.section01-p {
	margin: 15px 0;
}

.section01-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 45px;
	color: #31344B;
	margin-bottom: 5px;
}

.section01-p02 {
	font-family: 'Inter';
	font-size: 16px;
	line-height: 24px;
	color: #31344B;
	max-width: 860px;
}

.main-button-a {
	font-family: Poppins;
	font-size: 16px;
	color: #31344B;
	text-decoration: none;
}

.main-button-f {
	width: 220px;
	height: 58px;
	background: linear-gradient(180deg, #FDFBFB 0%, #F8F5F9 100%);
	box-shadow: -10px -10px 40px #FFFFFF, 5px 5px 30px rgba(0, 0, 0, 0.2), inset -5px -5px 30px rgba(255, 255, 255, 0.25), inset 5px 5px 30px rgba(115, 115, 115, 0.15);
	border-radius: 14px;
	border: none;
	
	margin-left: 700px;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.main-button-f:hover {
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1), inset -5px -5px 8px rgba(255, 255, 255, 0.1), inset 5px 5px 8px rgba(115, 115, 115, 0.15);
}


/* about me */
.section02 {
	margin-bottom: 10%;
}

.aboutme {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.section02-box {
	width: 1078px;
	height: 550px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 15px 15px 50px rgba(0, 0, 0, 0.2), inset -10px -10px 30px #FFFFFF, inset 7px 7px 50px rgba(120, 120, 120, 0.1);
	border-radius: 15px;
}

.section02-main {
	padding-top: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section02-profile {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutme-name {
	font-family: 'Sonsie One';
	font-size: 30px;
	line-height: 39px;
	color: #31344B;
}

.section02-p01 {
	font-family: 'Poppins';
	font-size: 20px;
	line-height: 30px;
	color: #31344B;
}

.section02-p {
	margin-top: 7%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.section02-p02 {
	width: 420px;
	font-family: 'Inter';
	font-size: 16px;
	line-height: 23px;
	color: #31344B;
}

.aboutme-button-f {
	width: 220px;
    height: 58px;
    background: linear-gradient(180deg, #FDFBFB 0%, #F8F5F9 100%);
    box-shadow: -10px -10px 40px #ffffff, 5px 5px 30px rgb(0 0 0 / 20%), inset -5px -5px 30px rgb(255 255 255 / 25%), inset 5px 5px 30px rgb(115 115 115 / 15%);
    border-radius: 14px;
    border: none;
    margin-left: 200px; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.aboutme-button-f:hover {
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1), inset -5px -5px 8px rgba(255, 255, 255, 0.1), inset 5px 5px 8px rgba(115, 115, 115, 0.15);
}


/* footer */ 
.footer-main {
	padding-top: 10%;
	height: 700px;
	background: linear-gradient(180deg, #DAD4EC 23.26%, #EDE9F4 63.89%, #F2EFF6 76.39%, #F4F1F7 77.31%, #F2EFF6 100%);
}

.footer-p {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 45px;
	color: #31344B;
}

.footer-p02 {
	font-family: 'Sonsie One';
	font-size: 90px;
	line-height: 116px;
	color: #31344B;
}

.footer-buttons {
	margin-top: 4em;
	display: flex;
    align-items: center;
    justify-content: center;
}

.footer-button {
	width: 89px;
	height: 89px;
	margin: 0 1em;
	background: linear-gradient(180deg, #EDE9F4 0%, #F4F1F7 100%);
	box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.25), 3px 3px 8px rgba(0, 0, 0, 0.15), inset -3px -3px 8px rgba(255, 255, 255, 0.8), inset 3px 3px 10px rgba(133, 133, 133, 0.25);
	border: none;
	border-radius: 50%;
}

.footer-button-a {
	text-decoration: none;
}

.footer-nav-parent {
	height: 195px;
	background: linear-gradient(180deg, #F2EFF6 0%, #FDFBFB 100%);
	border-top: 0.5px solid #D8D8D8;
}

.footer-nav {
	margin-top: 4em;
}

.footer-nav-p {
	font-family: Poppins;
	font-size: 16px;
	color: #31344B;
	white-space: nowrap;
}

/* project page */
.logo-a {
	color: #31344B;
	text-decoration: none;
}

/* head */
.phead-bc {
	background: linear-gradient(180deg, #F8F5F9 0%, #FAF8FA 7.64%, #F9F6F9 12.33%, #F8F6F9 14.4%, #F8F5F9 14.4%, #F8F5F9 14.41%, #F8F5F9 15.82%, #F8F5F9 16.46%, #F8F5F9 16.47%, #F8F5F9 16.48%, #F7F5F9 16.49%, #F4F1F7 25.87%, #F4F1F7 25.88%, #F3F0F7 29.51%, #F2EFF6 31.59%, #F2EFF6 31.6%, #F1EEF6 33.68%, #ECE8F4 48.61%, #DDD8ED 92.01%, #DDD7ED 94.16%, #DCD7ED 94.17%, #DCD6ED 94.18%, #DAD4EC 100%);
	display: flex;
    justify-content: center;
}

.phead {
	padding-top: 3%;
	margin: 0 10%;
	padding-bottom: 3%;
	/*height: 500px;*/
	display: flex;
    flex-direction: column;
}

.phead-h2 {
	font-family: 'Poppins';
	font-size: 40px;
	line-height: 60px;
	color: #31344B;
}

.phead-h3 {
	font-family: 'Poppins';
	font-size: 60px;
	line-height: 90px;
	color: #31344B;
}

.phead-ps {
	margin-top: 3%;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.phead-p01 {
	max-width: 400px;
}

.phead-p02 {
	max-width: 650px;
}

.phead-h4 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 45px;
	color: #31344B;
}

.phead-p {
	font-family: 'Inter';
	font-size: 16px;
	line-height: 24px;
	color: #31344B;
}

.svg-arrows {
	height: auto;
}

.arrows-a {
	text-decoration: none;
}

/* project page section 01 */
.psection01 {
	display: flex;
    margin: 5% 0 10% 0;
    flex-direction: column;
    align-items: center;
}

.svg-mockup {
	height: 740px;
    max-width: 1140px;
}

.mockup-a {
	color: #31344B;
	text-decoration: none;
	font-family: 'poppins';
	font-size: 30px;
}

.mockup-a:hover {
	text-decoration: underline;
}


.svg-mockup-h {
	height: 567px;
    max-width: 860px;
}


/* project page section 02 */
.psection02 {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.psection02-h2 {
	font-family: 'Poppins';
	font-size: 70px;
	line-height: 105px;
	color: #31344B;
	width: 1078px;
	margin-bottom: 3%;
}

.psection02-box {
	width: 1078px;
	height: 344px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10%;
}

.psection02-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 60px;
	color: #31344B;
	width: 800px;
}

/* project page section 03 */
.psection03 {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.psection03-h2 {
	font-family: 'Poppins';
	font-size: 70px;
	line-height: 105px;
	color: #31344B;
	width: 1078px;
	margin-bottom: 3%;
}

.psection03-box {
	width: 1078px;
	height: 800px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
	margin-bottom: 10%;
}

.psection03-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 60px;
	color: #31344B;
	width: 800px;
}

.psection03-p02 {
	font-family: 'Inter';
	font-size: 16px;
	line-height: 19px;
	color: #31344B;
	width: 840px;
	margin-bottom: 2%;
}

.psection03-p03 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 40px;
	color: #31344B;
	width: 800px;
	margin-top: 3%;
}

/* project page section 04 */
.psection04 {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.psection04-h2 {
	font-family: 'Poppins';
	font-size: 70px;
	line-height: 105px;
	color: #31344B;
	width: 1078px;
	margin-bottom: 3%;
}

.psection04-box {
	width: 1078px;
	height: 280px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10%;
}

.psection04-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 60px;
	color: #31344B;
	width: 800px;
}

.psection04-p02 {
	font-family: 'Inter';
	font-size: 16px;
	line-height: 23px;
	color: #31344B;
	width: 800px;
}

/* project page section 05 */
.psection05 {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.psection05-h2 {
	font-family: 'Poppins';
	font-size: 70px;
	line-height: 105px;
	color: #31344B;
	width: 1078px;
	margin-bottom: 3%;
}

.psection05-box {
	width: 1078px;
	height: 802px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10%;
}

.psection05-bc {
	width: 1000px;
	height: 740px;
	background: #DAD4EC;
	border-radius: 15px;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.psection05-image {
	margin: 3%;
}

.psection05-box-02 {
	width: 1078px;
	height: 1078px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10%;
}

/* project page 02 section 03 */
.p2section03-p01 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 60px;
	color: #31344B;
	width: 800px;
	margin-bottom: 2%;
}

.p2section03-p03 {
	font-family: 'Poppins';
	font-size: 30px;
	line-height: 60px;
	color: #31344B;
	width: 800px;
	margin: 2% 0;
}

.p2section04-box {
	width: 1078px;
	height: 400px;
	background: #FDFBFB;
	box-shadow: -10px -10px 50px #FFFFFF, 10px 10px 50px rgba(0, 0, 0, 0.2), inset -7px -7px 30px rgba(255, 255, 255, 0.25), inset 7px 7px 30px rgba(120, 120, 120, 0.1);
	border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10%;
}

.p2section04-p02 {
	width: 800px;
	font-family: 'Inter';
	font-size: 16px;
	line-height: 25px;
	color: #31344B;
}


@media only screen and (max-width: 1150px) {
	
	/* Home page */
	.svg-profile {
		width: 350px;
	}
	
	.h2-section01 {
		width: 700px;
	}
	
	.section01-box {
		width: 700px;
		height: 750px;
	}
	
	.psection01-image {
		width: 600px;
	}
	
	.image-section01 {
		width: 600px;
	}
	
	.main-button-f {
		margin-left: 350px;
	}
	
	.section02-box {
		width: 700px;
		height: 900px;
	}
	
	.svg-profile02 {
		width: 400px;
	}
	
	.section02-p {
		margin-top: 4%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.section02-p02 {
		margin: 2% 0;
		width: 350px;
	}
	
	.aboutme-button-f {
		margin: 3% 0;
	}
	
	/* project page */
	.phead-h2 {
		font-size: 30px;
	}
	
	.phead-h3 {
		font-size: 40px;
		line-height: 35px;
	}
	
	.svg-arrows {
		width: 700px;
		margin-top: 2%;
	}
	
	.phead-h4 {
		font-size: 25px;
	}
	
	.phead-p02 {
		max-width: 400px;
	}
	
	.svg-mockup {
		width: 700px;
		height: 500px;
	}
	
	.psection02-h2 {
		font-size: 50px;
		width: 700px;
	}
	
	.psection02-box {
		width: 700px;
	}
	
	.psection02-p01 {
		font-size: 20px;
		width: 550px;
	}
	
	.svg-skills {
		width: 600px;
	}
	
	.psection03-h2 {
		font-size: 50px;
		width: 700px;
	}
	
	.psection03-box {
		width: 700px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		align-content: center;
	}
	
	.psection03-p01 {
		font-size: 20px;
		width: 550px;
	}
	
	.psection03-p02 {
		width: 550px;
	}
	
	.svg-color {
		width: 550px;
	}
	
	.psection03-p03 {
		font-size: 20px;
		width: 550px;
	}
	
	.svg-typorgapy {
		width: 550px;
	}
	
	.psection04-h2 {
		font-size: 50px;
		width: 700px;
	}
	
	.psection04-box {
		width: 700px;
	}
	
	.psection04-p01 {
		font-size: 20px;
		width: 550px;
	}
	
	.psection04-p02 {
		width: 550px;
	}
	
	.psection05-h2 {
		font-size: 50px;
		width: 700px;
	}
	
	.psection05-box {
		width: 700px;
		height: 650px;
	}
	
	.psection05-bc {
		width: 640px;
		height: 600px;
	}
	
	.psection05-image {
		width: 640px;
	}
	
	.psection05-box-02 {
		width: 700px;
		height: 700px;
	}
	
	.psection05-image-02 {
		width: 640px;
	}
	
	/* project page 02 */ 
	.p2section03-p01 {
		font-size: 20px;
		width: 550px;
	}
	
	.p2section03-p03 {
		font-size: 20px;
		width: 550px;
	}
	
	.p2section04-box {
		width: 700px;
	}
	
	.p2section04-p02 {
		width: 550px;
	}
}

@media only screen and (max-width: 900px) {
	/* home page Footer */
	.footer-p02 {
		font-size: 70px;
	}
	
}

@media only screen and (max-width: 750px) {
	
	/* Home page */
	.head-p02 {
		font-size: 40px;
		line-height: 45px;
	}
	
	.head-p03 {
		font-size: 20px;
		line-height: 20px;
	}
	
	.head-p04 {
		margin-top: 0.5em; 
	}
	
	.svg-profile {
		width: 300px;
	}
	
	.h2-section01 {
		width: 500px;
		font-size: 50px;
	}
	
	.section01-box {
		width: 500px;
		height: 700px;
	}
	
	.psection01-image {
		width: 400px;
	}
	
	.image-section01 {
		width: 400px;
	}
	
	.section01-p01 {
		font-size: 22px;
	}
	
	.main-button-f {
		margin-left: 90px;
	}
	
	.section02-box {
		width: 500px;
	}
	
	/* project page header */
	.phead-h2 {
		font-size: 20px;
	}
	
	.phead-h3 {
		font-size: 30px;
	}
	
	.svg-arrows {
		width: 500px;
	}
	
	.phead-ps {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	
	.phead-h4 {
		font-size: 20px;
	}
	
	.svg-mockup {
		width: 500px;
		height: 400px;
	}
	
	.mockup-a {
		font-size: 20px;
	}
	
	.psection02-h2 {
		font-size: 30px;
		width: 500px;
	}
	
	.psection02-box {
		width: 500px;
		height: 180px;
	}
	
	.psection02-p01 {
		display: none;
	}
	
	.svg-skills {
		width: 400px;
	}
	
	.psection03-h2 {
		font-size: 30px;
		width: 500px;
	}
	
	.psection03-box {
		width: 500px;
		height: 700px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		align-content: center;
	}
	
	.psection03-p01 {
		font-size: 20px;
		width: 400px;
	}
	
	.psection03-p02 {
		width: 400px;
	}
	
	.svg-color {
		width: 400px;
	}
	
	.psection03-p03 {
		font-size: 20px;
		width: 400px;
	}
	
	.svg-typorgapy {
		width: 400px;
		height: 200px;
	}
	
	.psection04-h2 {
		font-size: 30px;
		width: 500px;
	}
	
	.psection04-box {
		width: 500px;
		height: 420px;
	}
	
	.psection04-p01 {
		font-size: 20px;
		width: 400px;
	}
	
	.psection04-p02 {
		width: 400px;
	}
	
	.psection05-h2 {
		font-size: 30px;
		width: 500px;
	}
	
	.psection05-box {
		width: 500px;
		height: 450px;
	}
	
	.psection05-bc {
		width: 440px;
		height: 400px;
	}
	
	.psection05-image {
		width: 440px;
	}
	
	.psection05-box-02 {
		width: 500px;
		height: 500px;
	}
	
	.psection05-image-02 {
		width: 440px;
	}
	
	/* project page 02 */ 
	.p2section03-p01 {
		font-size: 20px;
		width: 400px;
	}
	
	.p2section03-p03 {
		font-size: 20px;
		width: 400px;
	}
	
	.p2section04-box {
		width: 500px;
	}
	
	.p2section04-p02 {
		width: 400px;
	}
	
}

@media only screen and (max-width: 650px) {
	/* Home page header */
	.head {
		height: 620px;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: space-around;
	}
	
	.svg-profile {
		height: 300px;
	}
	
	/* Home page footer */
	.footer-main {
		height: 550px;
	}
	
	.footer-p01 {
		font-size: 25px;
		line-height: 20px;
	}
	
	.footer-p02 {
		font-size: 50px;
		line-height: 90px;
	}

}

@media only screen and (max-width: 550px) {
	/* Home page */
	/* Home page nav */
	.nav-link {
		display: none;
	}
	
	.nav-button-f {
		width: 150px;
	}
	
	/* Home page main */
	.nav-button-a {
		display: none;
	}
	
	.nav-button-f {
		display: none;
	}
	
	.h2-section01 {
		width: 300px;
		font-size: 40px;
		line-height: 80px;
	}
	
	.section01-box {
		width: 300px;
		height: 700px;
	}
	
	.psection01-image {
		width: 280px;
	}
	
	.image-section01 {
		width: 280px;
	}
	
	
	.section01-p01 {
		line-height: 30px;
		font-size: 20px;
	}
	
	.main-button-f {
		margin-left: 0;
	}
	
	.section02-box {
		width: 300px;
		height: 750px;
		margin-bottom: 8%;
	}
	
	.svg-profile02 {
		width: 300px;
		height: 300px;
	}
	
	.aboutme-name {
		font-size: 25px;
		line-height: 20px;
	}
	
	.section02-p01 {
		font-size: 18px;
		width: 270px;
	}
	
	.section02-p02 {
		width: 270px;
	}
	
	/* home page footer */
	.footer-main {
		height: 400px;
	}
	
	.footer-p01 {
		font-size: 20px;
	}
	
	.footer-p02 {
		font-size: 30px;
		line-height: 50px;
	}
	
	.svg-smile {
		width: 100px;
	}
	
	.footer-button {
		width: 70px;
		height: 70px;
	}
	
	.logo-footer {
		margin-bottom: 3%;
	}
	
	.footer-nav {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	
	/* project page header */
	.phead {
		width: 300px;
	}
	
	.svg-arrows {
		width: 300px;
	}

	
	.phead-h4 {
		font-size: 20px;
	}
	
	.svg-mockup {
		width: 300px;
		height: 200px;
	}
	
	.mockup-a {
		font-size: 20px;
	}
	
	.psection02-h2 {
		font-size: 20px;
		width: 300px;
	}
	
	.psection02-box {
		width: 300px;
		height: 100px;
	}
	
	.psection02-p01 {
		display: none;
	}
	
	.svg-skills {
		width: 270px;
	}
	
	.psection03-h2 {
		font-size: 20px;
		width: 300px;
	}
	
	.psection03-box {
		width: 300px;
		height: 600px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		align-content: center;
	}
	
	.psection03-p01 {
		font-size: 20px;
		width: 270px;
	}
	
	.psection03-p02 {
		width: 270px;
	}
	
	.svg-color {
		width: 270px;
	}
	
	.psection03-p03 {
		font-size: 20px;
		width: 270px;
	}
	
	.svg-typorgapy {
		width: 270px;
		height: 100px;
	}
	
	.psection04-h2 {
		font-size: 20px;
		width: 300px;
	}
	
	.psection04-box {
		width: 300px;
		height: 450px;
	}
	
	.psection04-p01 {
		font-size: 20px;
		width: 270px;
	}
	
	.psection04-p02 {
		width: 270px;
	}
	
	.psection05-h2 {
		font-size: 20px;
		width: 300px;
	}
	
	.psection05-box {
		width: 300px;
		height: 300px;
	}
	
	.psection05-bc {
		width: 270px;
		height: 270px;
	}
	
	.psection05-image {
		width: 270px;
	}
	
	.psection05-box-02 {
		width: 300px;
		height: 300px;
	}
	
	.psection05-image-02 {
		width: 270px;
	}
	
	/* project page 02 */ 
	.p2section03-p01 {
		font-size: 20px;
		width: 270px;
	}
	
	.p2section03-p03 {
		font-size: 20px;
		width: 270px;
	}
	
	.p2section04-p02 {
		width: 270px;
	}
	
	.p2section04-box {
		width: 300px;
	}
	

	
}
