* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Custom CSS */

:root {
    --body-bg-color: #000000;
    --container-bg-color: #1a1a1a;
    --text-color: #00e000;
}

.body-main {
    background-color: var(--body-bg-color);
    color: var(--text-color);
    margin: 0rem;
    padding: 0.5rem;
}

.main-content {
    display: flex;
    gap: 1.5rem;
    padding: 0rem 0;
}

/* last of Main Custom CSS */

/* Left column */

/* name-img start */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 25%;
    height: fit-content;
}

.name-img h1 {
    font-size: 1.1rem;
    text-align: center;
}

.name-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.projects-list {
    /* other */
    background-color: rgb(16, 16, 16);
    list-style-type: none;
    text-align: center;
    /* display F */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* padding/margin */
    padding: 0.5rem;
    margin: 0;
}

/* end of name-img */

.name-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.profile-div {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 1.25rem;
    border-radius: 8px;
}

.resume {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0px auto;
    padding: 1.25rem;
    border-radius: 8px;
}

.projects-div {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    gap: 0rem;
    justify-content: space-around;
    align-items: center;
    padding: .5rem;
    border-radius: 8px;
}

/* end of left column */

/* center column */

.center-column {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    max-width: 50%;
    width: 100%;
    height: fit-content;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--container-bg-color);
}

.title {
    background-color: var(--container-bg-color);
    text-align: center;
    font-size: 1.5rem;
}

/* end of column */

/* Right column */

.right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 25%;
    height: fit-content;
}

/* Skills */
.skills {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 8px;
}

.skills-list {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}
/* end of skills */

/* Timeline */
.the-timeline {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 8px;
}

.the-timeline h2 {
    text-align: center;
}

.timeline-order {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
    margin: 0;
}
/* End of timeline */

/* testimonials */

/* .testimonials {
    
    background-color: var(--container-bg-color);
    color: var(--text-color);
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-radius: 8px;
}

.testimonials h2 {
    text-align: center;
}

.testimonials-list {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
} 
    */

/* end of testimonials */

/* Weblink media connections */
.Weblink-profiles {
    /* coloring */
    background-color: var(--container-bg-color);
    color: var(--text-color);
    /* display stuffs */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
}

.Weblink-profiles h2 {
    text-align: center;
}

.weblink-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* other */
    list-style-type: none;
    gap: 0.5rem;
    text-align: center;
    padding: 0;
    margin: 0;
}

.weblink-list li {
    background-color: var(--body-bg-color);
    /* flex */
    text-align: center;
    padding: 0.5rem;
    border-radius: .75rem;
}

.weblink-list li a {

    text-decoration: none;
    font-size: 1rem;
}

/* end of right column */

/* footer */
.footer-main {
    text-align: right;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

/* end of footer */

/* Other custom semantic adjustments */
a {
    color: #0bf;
    text-decoration: none;
}

ul {
    list-style-type: none;
}

/* typography */
* {
    font-family: 'Courier New', Courier, monospace;
}