*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
    color:#333
}

a{
    color:#0ea5e9;
    text-decoration: none;
}

.container{
    width: 800px;
    padding: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin: 50px auto;
    border-radius: 20px;
    background: #fff;
    position: relative;
}
.container::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 20px;
    background: linear-gradient(to right,#22d3ee,#0ea5e9);
    z-index: -1;
    transform: rotate(-3deg);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.info-container{
    display: flex;
}
.info-container img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.info{
    flex-grow: 1;
    margin-right: 20px;
    display: grid;
    grid-template-columns: 20px 280px 60px 1fr;
}

.info .name{
    grid-area: 1/1/2/5;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: bold;
    column-gap: 10px;
}
.info .name span{
    font-size: 14px;
}

.label{
    color: #888;
    text-align: right;
}

.block{
    margin:30px 0;
}

.block-title{
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.block-content{
    padding: 20px 0;
}

.time-line{
    position: relative;
}

.time-line::before{
    content:"";
    position: absolute;
    width:2px;
    height: 100%;
    background: #22d3ee;
    left: 0;
    top: 10px;
}

.time-line .item{
    padding-left: 20px;
    margin: 15px 0;
}

.time-line .item::before{
    content:"";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #0ea5e9;
    left: -7px;
    top: 38px;
}

.gary{
    color: #888;
}
.detail{
    font-size: 12px;
    margin-top: 10px;
}

.skills{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    row-gap: 30px;
}

.skills .item{
    background: #f0fdff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
    line-height: 130px;
    position: relative;
}
.skills .item::before{
    content: "";
    position: absolute;
    border: 5px solid #c3f1f8;
    border-top-color: #0ea5e9;
    transform: rotate(45deg);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top:0;
    box-sizing: border-box;
}
.skills .level1::before{
    border: 5px solid #c3f1f8;
    border-top-color: #0ea5e9;
}
.skills .item.level2::before{
    border: 5px solid #c3f1f8;
    border-top-color: #0ea5e9;
    border-right-color: #0ea5e9;
}
.skills .item.level3::before{
    border: 5px solid #c3f1f8;
    border-top-color: #0ea5e9;
    border-right-color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}
.skills .item.level4::before{
    border-color: #0ea5e9;
}

.project{
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
}
.project h3{
    grid-area: 1/1/1/3;
}
.project p{
    margin-bottom: 1em;
}

.intro{
    font-size: 16px;
    line-height: 2;
}

ul{
    margin-top: 15px;
    padding-left: 12px;
}