body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    flex-wrap: nowrap;
}

.wrapper {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.name-logo {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.name-logo .name {
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 90px;
    color: midnightblue;
    padding-left: 0;
    padding-top: 0;
    font-size: 45px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 10px;
}

.name-logo .dot {
    margin-top: 0;
    margin-left: 1px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 60px;
    color: blue;
}

.navlinks {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    height: 60px;
    padding-left: 750px;
    padding-right: 100px;
    padding-bottom: 3px;
    position: relative;
    gap: 90px;
    z-index: 2;
    white-space: nowrap;
}

.navlinks a {
    position: relative;
    display: inline-block;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-left: 20px;
    text-decoration: none;
    padding-bottom: 2px;
    color: dimgray;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.navlinks a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
    pointer-events: none;
}

.navlinks a:hover {
    color: navy;
}

.navlinks a:hover::after {
    width: 100%;
}

.about-me {
    display: flex;
    font-size: 40px;
    font-family: 'DM Serif Text', sans-serif;
    justify-content: center;
    margin-bottom: -40px;
    margin-top: 20px;
    color: dimgray;
}

.underline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.line {
    width: 40px;
    height: 2px;
    background-color: dimgray;
}

.about-dot {
    width: 8px;
    height: 8px;
    background-color: dimgray;
    border-radius: 50%;
}

.trapezium-1 {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, cornflowerblue, aqua, lightblue);
    width: 1500px;
    height: 100vh;
    clip-path: polygon(0 0, 500px 0, 650px 100%, 0 100%);
    z-index: -5;
}

.trapezium-2 {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, lightblue, aqua, cornflowerblue);
    width: 1500px;
    height: 100vh;
    clip-path: polygon(1000px 0, 100% 0, 100% 100%, 850px 100%);
    z-index: -5;
}

.gist {
    display: flex;
    justify-content: space-between;
}

.boxbg {
    position: absolute;
    top: 290px;
    left: 1045px;
    width: 365px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(to bottom, white, rgb(236, 235, 235));
    z-index: -1;

}

.left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-top: 20px;
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 150px;
    margin-top: 20px;
}

.fn {
    display: flex;
    flex-direction: column;
    font-size: 35px;
    color: #1a1a1a;
    font-family: 'Goldman', sans-serif;
    padding-left: 20px;
    margin-left: 60px;
    margin-top: -60px;
    flex-wrap: nowrap;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16.5px;
    margin-left: 85px;
    margin-top: -30px;
    font-family: 'Times New Roman', Times, serif;
    color: navy;
    font-weight: 530;
    flex-wrap: nowrap;
    font-weight: bold;
}

.personal-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    padding-top: 40px;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300px;
}

.map {
    width: 35px;
    height: auto;
    margin-left: 60px;
    margin-top: 0;
}

.phone {
    width: 40px;
    height: auto;
    margin-left: 60px;
    margin-top: 0;
}

.mail {
    width: 45px;
    height: auto;
    margin-left: 60px;
    margin-top: 0;
}

.learn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 65px;
    font-size: 25px;
    color: #1a1a1a;
    font-family: 'DM Serif Text', serif;
}

.langs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 160px;
    margin-top: 10px;
    gap: 10px;
    font-size: 18px;
    color: #1a1a1a;
    font-family: 'Times New Roman', Times, serif;
}

.langs li {
    align-items: center;
    line-height: 40px;
    text-align: justify;
}

.html-icon,
.css-icon,
.js-icon,
.java-icon,
.python-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
    align-items: center;
    padding: 0;
}