
.content {
    position: relative;
    animation-name: contentani;
    animation-duration: 1s;
    margin-top:100px;
}

@keyframes contentani { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
}
/* section{
    min-height: 100vh;
} */

/* 섹션비주얼 */
.visual{
    width: 50%;
    margin: 0 auto;
    margin-top: 300px;
    height: 600px;
    background-image: url(../img/sky.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    animation-name: VisualBgWidth;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode:both;
}
@keyframes VisualBgWidth{
    0%{width: 50%;}
    100%{width: 100%;}
}
.visual .center_box{
    width: 1400px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
.visual .center_box h1{
    font-size: 60px;
    font-family: 'NEXON Lv1 Gothic OTF';
}

/* 섹션 간단 소개 */
.section.simple{
    height: 200px;
    margin-top: 80px;
    opacity: 0;
}
.section.simple .center_box{
    width: 1400px;
    margin: 0 auto;
}
.section.simple h2{
    font-size: 40px;
    text-align: center;
    font-family: 'KOTRA_BOLD-Bold';
}
.section.simple p{
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

/* 섹션 프로필 */
.section.aboutme{
    height: 600px;
    margin-top: 100px;
    opacity: 0;
    position: relative;
}
.section.aboutme .aboutmeBg{
    position: sticky;
    top: 50%;
    left: 5%;
    z-index: -1;
    opacity: 0.5;
    float: left;
}
.section.aboutme .aboutmeBg .outline{
    font-size: 120px;
    font-weight: bold;
    color: #6400ff;
    font-family: 'CookieRun-Regular';
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
.section.aboutme .aboutmeBg .outline .fill{
    position: absolute;
    color: #fff;
    top: -3px;
    left: -4px;
}
.section.aboutme .center_box{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section.aboutme .center_box .photo_inner{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid #6400ff;
    background-color: #fff;
    padding: 4px;
    float: left;
}
.section.aboutme .center_box .myphoto{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url(../img/chirpy1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section.aboutme .center_box .profile_box{
    width: 600px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    position: relative;
}
.section.aboutme .center_box .profile p{
    font-size: 20px;
    margin-bottom: 10px;
}
.section.aboutme .center_box .profile p.new-portfolio{
    color: #aaa;
}
.section.aboutme .center_box .profile p span{
    color: #494846;
    width: 100px;
    float: left;
}
.section.aboutme .center_box .profile p span.enter{
    height: 38px;
}
.section.aboutme .center_box .teg{
    display: flex;
    flex-flow: column nowrap;
}
.section.aboutme .center_box .teg ul li{
    float: left;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
}
.section.aboutme .center_box .teg ul li.emphasis{
    background-color: #6400ff;
    color: #fff;
}

.section.aboutme .profile_box .like_it{
    position: absolute;
    top: -30px;
    right: -50px;
}
.heart{
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/66955/web_heart_animation.png');
    background-repeat: no-repeat;
    background-size: 2900%;
    background-position: left;
    height: 120px;
    width: 120px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
}
  
.animate {
animation: heart-burst .8s steps(28) forwards;
}
  
@keyframes heart-burst {
    0% {
        background-position: left
    }
    100% {
        background-position: right
    }
}

/* 섹션 능력 */
.section.skill{
    height: 650px;
    margin-top: 100px;
    opacity: 0;
    position: relative;
    background-color:#444961;
}
.section.skill .skillBg{
    position: sticky;
    top: 50%;
    right: 5%;
    z-index: -1;
    /* opacity: 1; */
    float: right;
}
.section.skill .skillBg .outline{
    font-size: 120px;
    font-weight: bold;
    color: #ffc800;
    font-family: 'CookieRun-Regular';
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
.section.skill .skillBg .outline .fill{
    position: absolute;
    color: #fff;
    top: -3px;
    left: -4px;
}
.section.skill .center_box{
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.section.skill .center_box > div{
    width: 100%;
    float: left;
    padding: 50px 0;
}
.section.skill .center_box > div .text{
    width: 300px;
    float: left;
    font-size: 36px;
    line-height: 200px;
    font-weight: bold;
    font-family: 'CookieRun-Regular';
    color: #fff;
}
.section.skill ul{
    width: 800px;
    height: 200px;
    display: flex;
    justify-content: space-around;
}
.section.skill ul li{
    width: 150px;
    float: left;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}
.section.skill ul li img{
    width: 150px;
    height: 150px;
    border-radius: 10px;
}
.section.skill ul li .gauge{
    height: 50px;
    line-height: 50px;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
    color: #fff;
    font-family: 'CookieRun-Regular';
}
.section.skill ul li .gauge .gauge_num{
    float: left;
}
/* 스킬 디테일 */
.section.skill .coding ul li .skill_detail{
    position: absolute;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.section.skill ul li .speech-bubble {
    width: 300px;
    height: 150px;
	position: relative;
	background: #fff;
	border-radius: 20px;
    padding: 15px;
}

.section.skill .coding ul li .speech-bubble:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-bottom-color: #fff;
	border-top: 0;
	margin-left: -20px;
	margin-top: -20px;
}

.section.skill ul li .speech-bubble p{
    font-size: 14px;
    /* text-align: center; */
}

.section.skill .design ul li .skill_detail{
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
.section.skill .design ul li .speech-bubble:after {
	content: '';
	position: absolute;
	top: 150px;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: #fff;
	border-bottom: 0;
	margin-left: -20px;
	margin-bottom: -20px;
}

/* 섹션 이력서 */
.section.resume{
    height: 400px;
    margin-top: 100px;
    opacity: 0;
    margin-bottom: 50px;
}
.section.resume .center_box{
    width: 1400px;
    margin: 0 auto;
    padding: 50px;
}
.section.resume h2{
    font-size: 40px;
    text-align: center;
    font-family: 'KOTRA_BOLD-Bold';
}
.section.resume p{
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}
.section.resume .btn{
    width: 280px;
    height: 50px;
    position: relative;
    margin: 0 auto;
    margin-top: 50px;
    bottom: 5px;
    right: 5px;
    transition: all 0.5s;
}
.section.resume .btn::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
    background-color: #222;
    z-index: -2;
    transition: all 0.5s;
}
.section.resume .btn:hover{
    bottom: 0;
    right: 0;
}
.section.resume .btn:hover::after{
    top: 0;
    left: 0;
}
.section.resume .btn button{
    width: 280px;
    height: 50px;
    border: 2px solid #222;
    background-color: #fff;
    cursor: pointer;
}
.section.resume .btn button span{
    font-size: 16px;
    font-weight: bold;
    font-family: 'NEXON Lv1 Gothic OTF';
    display: flex;
    align-items: center;
    justify-content: center;
}
.section.resume .btn button span img{
    width: 17px;
    height: 17px;
    margin-left: 8px;   
}




/* 반응형 */
@media screen and (max-width:1600px){
    .section.aboutme .aboutmeBg .outline, .section.skill .skillBg .outline {font-size: 90px;}

}

@media screen and (max-width:1440px){
    .visual .center_box{width: 1200px; top: -55px;}
    .visual .center_box h1 {font-size: 50px;}
    .visual {height: 500px; margin-top: 250px;}
    .section.simple h2, .section.resume h2{font-size: 35px;}
    .section.simple p,
    .section.resume p,
    .section.aboutme .center_box .profile p,
    .section.aboutme .center_box .teg ul li{font-size: 18px;}

    .section.simple .center_box,
    .section.resume .center_box{width: 1200px;}
    .section.aboutme, .section.skill, .section.resume{margin-top: 60px; margin-bottom: 0;}
    .section.skill .design ul li .speech-bubble:after {top: 149px;}
}

@media screen and (max-width:1280px){
    .visual{height: 380px; margin-top: 220px;}
    .visual .center_box, .section.simple .center_box, .section.resume .center_box, .section.aboutme .center_box, .section.skill .center_box{width: 960px;}
    .visual .center_box h1{font-size: 40px;}
    .section.simple h2, .section.resume h2 {font-size: 30px;}
    .section.aboutme .center_box .photo_inner{width: 230px; height: 230px;}
    .section.skill .center_box > div .text{line-height: normal; margin-bottom: 20px;}
    .section.skill ul{justify-content: normal; gap: 40px;}
    .section.skill ul li{width: 120px;}
    .section.skill ul li img{width: 120px; height: 120px;}
    .section.skill .center_box > div {padding: 22px 0;}
    .section.skill .center_box > div .text{font-size: 30px;}
    .section.aboutme, .section.skill, .section.resume {margin-top: 34px;}
    .section.skill .coding ul li .skill_detail{display:none !important;}
}

@media screen and (max-width:1024px){
    .visual .center_box, .section.simple .center_box, .section.resume .center_box, .section.aboutme .center_box, .section.skill .center_box {width: 900px;}
    .section.simple p, .section.resume p, .section.aboutme .center_box .profile p, .section.aboutme .center_box .teg ul li {font-size: 16px;}
    .section.aboutme .aboutmeBg .outline, .section.skill .skillBg .outline {font-size: 60px;}

    .section.skill{height: 550px;}
    .section.skill ul{height: auto;}
    .section.skill .center_box{top: 0;}
}

@media screen and (max-width:960px){
    .visual .center_box, .section.simple .center_box, .section.resume .center_box, .section.aboutme .center_box, .section.skill .center_box {width: 700px;}
    .section.aboutme .center_box .photo_inner{display: none;}
    .section.aboutme .aboutmeBg{left:auto; right: 5%; float: right;}
    .section.skill{height: 510px;}
    .section.skill ul li{width: 100px;}
    .section.skill ul li img{width: 100px; height: 100px;}
}

@media screen and (max-width:769px){
    .visual .center_box{width: 500px;}
    .section.simple .center_box, .section.resume .center_box, .section.aboutme .center_box, .section.skill .center_box {width: 100%; padding: 0 20px;}
    .visual .center_box h1{font-size: 30px;}
    .visual .center_box{top: -32px;}
    .section.simple h2, .section.resume h2{font-size: 24px;}
    .section.simple p, .section.resume p, .section.aboutme .center_box .profile p, .section.aboutme .center_box .teg ul li{font-size: 14px;}
    .section.simple {height: 215px;}
    .section.aboutme {height: 350px;}
    .section.aboutme .profile_box .like_it{display: none;}
    .section.aboutme .aboutmeBg .outline, .section.skill .skillBg .outline {font-size: 40px;}
    .section.skill .center_box > div .text{width: 100%;}
    .section.skill ul{width: 100%;}
    .section.resume {height: 260px;}
}

@media screen and (max-width:560px){
    .visual .center_box h1 {font-size: 24px;}
    .visual .center_box{width: 400px;}
    .visual {height: 230px; margin-top: 130px;}
    .section.simple h2, .section.resume h2{font-size: 18px;}
    .section.simple p, .section.resume p{text-align: left;}
    .section .m_none{display: none;}
    .section.simple {margin-top: 40px;}
    .section.simple{height: 246px;}
    .section.aboutme .center_box .teg ul li {padding: 5px 6px;}
    .section.aboutme .aboutmeBg .outline, .section.skill .skillBg .outline {font-size: 24px;}
    .section.aboutme .center_box .profile p span {width: 65px;}
    .section.skill{height: 684px;}
    .section.skill .center_box > div .text {font-size: 24px;text-align: center;}
    .section.skill ul{display: grid; grid-template-columns: 1fr 1fr;}
    .section.skill ul li{width: 100%; align-items: center;}
    .section.resume .btn{margin-top: 15px;}
    .section.resume .btn button span {font-size: 14px;}
    .section.resume .btn, .section.resume .btn button{width: 160px; height: 45px;}
}

@media screen and (max-width:400px){
    .visual{height: 120px;}
    .visual .center_box{width: 280px;}
    .visual .center_box h1{font-size: 20px;}

    .section.simple h2, .section.resume h2{font-size: 16px; text-align: left;}
    .section.simple{height: 326px;}

    .section.aboutme .center_box .profile p{display: flex; flex-direction: column; font-weight: 700;}
    .section.aboutme .center_box .profile p span.enter{height: auto;}
    .section.aboutme .center_box .profile p span{font-weight: 400;}
    .section.aboutme{height: 450px;}

    .section.skill ul li img{width: 80px; height: 80px;}
    .section.skill ul li .gauge {font-size: 20px;}
    .section.skill{height: 624px;}

    .section.resume .btn{margin-top: 25px;}
    .section.resume .btn button span {font-size: 13px;}
}
