@charset "UTF-8";
/* CSS Document */
/* HeeJungLee Portfolio */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    margin: 0 auto;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: white;
}


/*---------------  header & intro ---------------*/
/*---------------  header & intro ---------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    z-index: 1000;
}

#favicon {
    width: 20%;
}

.navone {
    width: 20%;
    padding: 10px;
    cursor: pointer;
}

.navtwo {
    width: 80%;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

header nav {
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
    justify-content: flex-end;
    border-bottom: solid 1px #e8d2c5ce;
    background-color: white;
}

.active {
    color: #525252;
    text-decoration: underline;
}

.navtwo a {
    padding-left: 5%;
    text-decoration: none;
    color: #6e6e6e;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.7rem;
}

.navtwo a:hover {
    color: #e8d2c5ce;
    font-weight: bold;
}

.navtwo p {
    padding-left: 5%;
    margin-top: 1%;
}
/*---------------  (title)  ---------------*/

h1 {
    font-size: 3rem;
    color: #6e6e6e;
    opacity: 0.6;
}

.title {
    padding-top: 20vh;
    padding-bottom: 13vh;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    /*background-image: url("../images/titleBg.jpg");*/
    background-size: 100% auto;
}

.arrow {
    width: 40px;
}

#arrowL {
    transform: rotate(90deg);
}

#arrowR {
    transform: rotate(-90deg);
}

/*--------------- (button)---------------*/
button {
    float: right;
    padding: 1% 2%;
    width: 20%;
    border-radius: 5px;
    border: none;
    margin-right: 3%;
    background-color: #6e6e6e;
}

button:hover {
    background-color: #9c9c9c;
    cursor: pointer;
}

button a {
    color: #e8d2c5ce;
    text-transform: uppercase;
    text-decoration: none;
}

button a:hover {
    color: white;
    font-weight: 600;
}

/*--------------- (section)---------------*/
.introOne {
    height: 70vh;
    text-align: center;
}

#one {
    background-color: rgba(252, 252, 252);
    width: 90%;
    margin: 0 auto;
}

.contents {
    padding: 2%;
    margin-bottom: 20%;
}

h2 {
    margin-left: 2%;
    padding-top: 100px;
    color: #9c9c9c;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    font-weight: 200;
    color: #383838;
}

p span {
    font-weight: 400;
    font-size: 1.1rem;
}

.toolsImg img {
    width: 5%;
    margin-right: 2%;
}

#imageFull {
    width: 100%;
}

.FVlinks {
    display: flex;
    flex-direction: column;
    margin-bottom: 1%;
}

.FVlinks a {
    color: #525252;
    display: list-item;
    list-style-type: disc;
    list-style-position: inside;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.8rem;
}

.FVlinks a:hover {
    color: #9c9c9c;
    font-weight: 600;
}

/*--------------- media query ---------------*/
/*///////////////////////////////////////////*/
/*tablet and desktop*/
/*///////////////////////////////////////////*/

@media only screen and (min-width: 769px) {

    #one {
        background-color: rgba(252, 252, 252);
        width: 60%;
        margin: 0 auto;
    }

    /**section : intro  *****************************/
    .introOne {
        height: 79vh;
    }

    .introOne h1 {
        font-size: 3vw;
    }


    /**section 1: who am I  *****************************/
    .introTwo {
        width: 60%;
        height: 20vh;
        text-align: center;
        background-color: rgba(252, 252, 252);
    }

    #myFace {
        width: 200px;
    }

    .contentOne p {
        font-size: 16px;
    }


    h2 {
        font-size: 1.7rem;
    }

}

/*///////////////////////////////////////////*/
/*mobile*/
/*///////////////////////////////////////////*/
@media only screen and (max-width: 768px) {
    header {
        display: none;
    }

    #arrow {
        display: none;
    }

    .introOne h1 .box {
        display: none;
    }

    .introTwo {
        display: none;
    }

}