@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
@keyframes anim{
    0%{
        width:0%;
        height:0%;
    }
    100%{
        width:100%;
        height:100%;
    }
}

body {
    background-color: #f5f5f5;
    color: #2f2f2f;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
}

section {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 1px 3px #807979;
}

.wrapper {
    width: 85%;
    margin: 20px auto;
}

h1 {
    display: none;
}

h2, h3 {
    font-family: sans-serif;
}

h2 {    
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-size: 18px;
}

#my_info h2 {
    display: none;
}

#my_info p{
    width:160px;
    height:160px;
    display: inline-block;
}

#my_info img {
    width: 160px;
    height: 160px;
    margin-right: 40px;
    border-radius: 50px;
    animation-name: anim;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

table {
    margin-left:50px;
    margin-top:30px;
    display: inline-block;
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: top;
}

th {
    text-align: left;
    padding-right: 20px;
}

th, td {
    font-size: 15px;
}

#myname th {
    display: none;
}

#myname td {
    display: block;
    font-size: 32px;
    
    font-weight: bold;
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul li:hover {
    text-decoration: underline;
    color: gold;
    font-size:110%;
    display:inline-block;
    
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom:0px;
}

ul li {
    margin-bottom: 8px;
}

ul li::before {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

ul li:nth-child(1)::before {
    content: url('images/phone.png');
}
ul li:nth-child(2)::before {
    content: url('images/gmail.png');
}
ul li:nth-child(3)::before {
    content: url('images/instagram.png');
}
ul li:nth-child(4)::before {
    content: url('images/kakaotalk.png');
}

#skill ol {
    list-style: none;
    padding: 0;   
}

#skill li {
    display: inline-block;
    background-color: gold;
    padding: 8px 14px;
    border-radius: 32px;
    margin: 0 8px 8px 0;
}

#skill li:hover {
    background-color:cadetblue;
    text-decoration: none;    
    box-shadow: 2px 2px 2px 1px #807979;
}

#skill li::before {
    content: "#";
}

#project ol {
    list-style: none;
    padding: 0;
}

#project li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

#project li:last-child {
    border-bottom: none;
}

#project video {
    width: 100%;
}

#project a {
    color: gold;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 8px 2px 0;
}

#project a:hover {
    background-color: #2f2f2f;
    text-decoration: none;
    padding: 2px 8px;
    transition: padding 0.2s;
}

#project img{
    width:100%;
}
