/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Additional Reset */
  body {
    line-height: 1;
  }
  
  /* Reset Specific Elements */
  h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
  }
  
  ul, ol {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button, input, select, textarea {
    background-color: transparent;
    border: none;
    outline: none;
  }
  
body {
    background: #000314;
    color: #fff;
}
.header-section {
    padding: 50px;
    position: fixed;
    width: 100%;
    z-index: 10;
    background: #000314;
}
.logo {
    float: left;
    border: 1px solid #fff;
    border-radius: 6px;
    height: 30px;
    width: 30px;
    padding-left: 10px;
    padding-top: 5px;
}
.header-list {
    display: flex;
    justify-content: flex-end;
    .header-list-item {
        padding: 6px 15px;
    }
}
main {
    padding: 50px;
}
.section-left {
    position: fixed;
}
.section-right {
    position: relative;
    left: 50%;
}
.section-right div {
    margin-top: 3%;
    width: 50%;
}
.intro-section {
    width: 100%;
    overflow: auto;
    .intro-content {
        margin-top: 4%;
        width: 50%;
    }
    .intro-content h3 {
        margin: 10px 0px 25px;
    }
    .intro-content p {
        line-height: 20px;
    }
    .intro-image {
        margin-top: 20%;
    }
    .intro-image img {
        height: 200px;
        width: 200px;
        border-radius: 50%;
    }
}
.about-section {
    
    padding: 8% 0%;
}
.about-section p {
    margin: 15px 0px;
    line-height: 1.5;
}
.exp-item {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
}
.exp-item .exp-item-period {
    width: 30%;
}
.exp-item .exp-item-desc {
    width: 70%;
}
.exp-item-desc h4 {
    text-decoration: underline;
}
.exp-item-desc h5 {
    margin: 8px 0px 20px;
}
.exp-item-desc p {
    line-height: 1.4;
}
.project-section {
  margin-top: 13% !important;
}
.project-item {
    display: flex;
    margin-bottom: 30px;
    .project-image img {
        width: 310px;
        height: 180px;
    }
}
.project-content p {
    line-height: 1.5;
}
.social-media ul {
    display: flex;
    margin-top: 50px;
}
.sm-item img {
    width: 50px;
    height: 50px;       
}
.sm-item {
    margin-right: 5px;
}