html, body {
    width: 100%;
    margin: 0px;
    font-family: sans-serif;
}

/* menu */
.nav {
    width: 100%;
    background-color: #c4b89c;
    position: fixed;
    top: 0px;
    z-index: 999;
}

.nav ul {
    justify-content: center;
    list-style: none;
    display: flex;
    gap: 1.5em;
    margin: 0;
}

.nav li {
    padding: 0 10px;
}

.nav li a {
    display: inline-block;
    padding: 23px 0;
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #bb6558;
    transform: scale(0, 1);
    transition: 0.3s;
}

.nav li a:hover::after {
    transform: scale(1);
}

/* header */
.header {
    padding: 100px 0 90px 0;
}

.site-title {
    text-align: center;
    padding-left: 50px;
}

.site-title h1 {
    position: relative;
    display: inline-block;
    margin-top: 18px;
}

.logo {
    width: 257px;
    position: absolute;
    top: -40px;
    left: -155px;
}

/* section */
.section {
    padding: 90px 0 90px 0;
    color: #1f1f1f;
}

.section:nth-of-type(odd) {
    background-color: #f5f3ed;
}

.section-title-area {
    margin-bottom: 40px;
}

.inner {
    margin: 0 auto;
    text-align: left;
    max-width: 1000px;
}

/* about */
#about .inner {
    width: 500px;
}

/* profile */
.profile-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-image {
    flex-basis: 39%;
}

.profile-image img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.profile-text {
    width: 100%;
    flex-basis: 59%;
    border-left: 1px solid #ccc19f;
}

.profile-table {
    height: 100%;
    margin-left: 55px;
    border-collapse: collapse;
}

.profile-table td {
    border-bottom: 1px solid #ccc19f;
}

.profile-table td:nth-child(1) {
    width: 15px;
    text-align: center;
}
.profile-table td:nth-child(2) {
    min-width: 100px;
}

.profile-icon {
    color: #a8935a;
}

/* skills, certifications */
.skill-section {
    text-align: center;
}

.skill-item-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.skill-item {
    width: 49%;
}

.skill-item h3 {
    text-align: left;
}

.skill-item p {
    text-align: left;
}

h2 {
    margin-top: 0;
    font-size: 30px;
}


header {
    margin-top: 50px;
    height: 400px;
}

h1 {
    color: #c4b89c;
    font-size: 70px;
    text-align: center;
    padding-top: 110px;
    margin: 0;
}

h2 {
    text-align: center;
}

header p {
    color: #b0847d;
    font-size: 26px;
    letter-spacing: 50px;
    margin: 0;
}

/* footer */
.footer {
    background-color: #c4b89c;
    color: #ffffff;
}

.footer p {
    margin: 0;
    padding: 20px 0;
    text-align: center;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: #b0847d;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

/* tbd */
.tbd {
    text-align: center;
}
