/* contents */

.con {
    width:90%;
}
.hello {
    margin-top: 157px;
    margin-left: 80px;
    height: 300px;
    font-family:  'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #999;
}
.hello p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 45px;
    margin-left: -9px;
    color: #ff2f6e;
    font-size: 95px;
    font-weight: 600;
}
.resume {
    margin-left: 80px;

}
.resume_txt {
    display: inline-block;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #999;
    margin-bottom: 50px;
}
.type {
    display: inline-block;
    font-family:  'Roboto Mono', monospace; 
    font-size: 36px;
    color: #333;
    line-height: 42px;
    border-right: 2px solid #333;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 1.5s steps(7, end), blink .75s step-end infinite;
}
@keyframes typing {
    from { 
        width: 0;
    }
    to { 
        width: 7ch; 
    }
}
@keyframes blink {
    from, to { 
        border-color: transparent; 
    }
    50% { 
        border-color: #333; 
    }
}
.edu, .work {
    position: relative;
    margin-bottom: 50px;
}
.ed-list, .work-list, .skill-list {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    margin-bottom: 30px;
}
.ed-list_block, .work-list_block {
    border-left: 2px solid #ff2f6e;
    padding-bottom: 30px;
    padding-left: 25px;
}
.ed-list_block:last-child, .work-list_block:last-child {
    padding-bottom: 0;
}
.ed-list_block::before, .work-list_block::before {
    width: 12px;
    height: 12px;
    border: 2px solid #ff2f6e;
    position: absolute;
    content: "";
    border-radius: 50%;
    background-color: #f9f9f9;
    left: -7px;
}
.ed-list_title, .work-list_title {
    text-transform: uppercase;
    color: #ff2f6e;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding-bottom: 5px;
}
.ed-list_block-data, .work-list_block-data {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #999;
    padding-bottom: 10px;
}
.ed-list_sub, .work-list_sub {
    font-family: 'Roboto', sans-serif, 'Noto Sans KR';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #333;
}
.progress-list_left {
    margin-right: 60px;
    margin-bottom: 50px;
    float: left;
}
.progress-list_right {
    float: left;
    margin-bottom: 50px;
}
.progress-list_skill {
    width: 300px;
}
.progress-list_skill p {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
}
.progress-list_skill-value {
    float: right;
}
.progress {
    display: flex;
    overflow: hidden;
    background-color: #e9ecef;
    border-radius: 50px;
    margin-bottom: 30px;
    height: 6px;
}
.progress-bar_color-on {
    background-color: #ff2f6e;    
}

.scroll_on{
    animation-name: animateBar;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1.5s;
}

@keyframes animateBar {
    0% {transform: translateX(-100%);}
    100% {transform: translateX(0);}
}

















