body,
div,
p,
header,
section,
footer,
nav,
ol {
    margin: 0;
    padding: 0;
}
ol {
    list-style: none;
    padding-inline-start: 0;
}
a {
    text-decoration: none;
}
a:hover {
    color: #ff8100;
}
a:visited {
    text-decoration: none;
}
.content-title {
    font-family: "nanum";
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color: #ff8100;
}

/* font */
@font-face {
    src: url(../fonts/Allura-Regular.ttf);
    font-family: "allura";
}
@font-face {
    src: url(../fonts/NanumBarunGothic-YetHangul.ttf);
    font-family: "nanum";
}
@font-face {
    src: url(../fonts/Lora-Bold.ttf);
    font-family: "lora";
}

/* nav */
nav {
    position: fixed;
    height: 8vh;
    width: 100vw;
    transition-duration: 0.3s;
    color: #272822;
    z-index: 999;
    font-family: "allura";
}
.head-title {
    font-size: 30px;
    margin-left: 1vw;
    line-height: 7.5vh;
    display: inline-block;
}
.head-link {
    color: #272822;
    float: right;
    line-height: 7.5vh;
    font-size: 21px;
    margin-right: 30px;
}

/* introduce */
#introduce {
    padding-top: 16vh;
    width: 75%;
    margin: 0 auto 20vh auto;
}
.info {
    display: flex;
    justify-content: space-around;
}
.image-box {
    overflow: hidden;
    border-radius: 50%;
    margin-top: 5vh;
    width: 35%;
    min-width: 416px;
    height: 416px;
}
.title-image {
    width: 100%;
}
.about-me {
    font-family: "nanum";
    font-size: 37px;
    font-weight: bold;
    margin-top: 9%;
    text-align: center;
    color: #272822;
}
.profile-hr {
    margin-top: 3vh;
    background: #272822;
    height: 1px;
    border: none;
}
.about-me-cont {
    font-family: "nanum";
    font-size: 17px;
    text-align: center;
    color: #272822;
}
.contact {
    line-height: 39px;
    margin-top: 2vh;
    font-size: 14px;
}
.contact-image,
.contact-link-wrap {
    display: inline-block;
    color: #272822;
}
.contact-link-wrap {
    margin-left: 2vw;
}
.contact-common {
    width: max-content;
}
.contact-link {
    color: #272822;
}
.contact-text {
    color: #272822;
}

/* work */
#work, #Skill {
    padding-top: 9vh;
    padding-bottom: 9vh;
    background: #272822;
    width: 100%;
}
.experience-content {
    margin: 6vh auto 0 auto;
    width: 75%;
}
.content-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color:  #ececec;
    font-family: "nanum";
    margin-bottom: 30px;
}
.left {
    margin-top: 20px;
    width: 20%;
    height: 100%;
}
.right {
    margin-top: 20px;
    width: 70%;
    height: 100%;
}
.work-link, .skill-content-wrap {
    color: #ececec;
}
.experience-title {
    font-size: 37px;
    font-weight: 700;
    width: 100%;
}
.experience-sub {
    font-size: 16px;
}
/* other */
#other {
    padding-top: 9vh;
    padding-bottom: 9vh;
    width: 100%;
}
.content-wrap.other, .other-link {
    color:  #272822;
}

/* skill */
.skill-content-wrap p {
    margin-bottom: 10px;
}

/* mobile */
@media only screen and (max-width: 1035px) {
    .info {
        flex-direction: column;
        align-items: center;
    }
    .head-title {
        font-size: 30px;
    }
    .head-link {
        font-size: 15px;
    }
    .content-title {
        font-size: 40px;
    }
    .experience-title {
        font-size: 25px;
    }
}

@media only screen and (max-width: 600px) {
    nav {
        display: none;
    }
    .image-box {
        min-width: 300px;
        height: 300px;
    }
    .about-me {
        font-size: 20px;
    }
    .about-me-cont, .contact {
        font-size: 12px;
    }
    .content-wrap {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .experience-sub {
        font-size: 15px;
    }
    .experience-sub br {
        display: none;
    }
    .right strong {
        font-size: 14px;
    }
    .right ul {
        font-size: 13px;
    }
    .skill-content-wrap {
        font-size: 13px;
    }
}