body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 200;
    background-color: #1e1e1e;
    color: #e0e0e0;
    /* line-height: 1.6; */
}

/* Image Control */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image img {
    width: 220px;
    height: auto;
    border-radius: 12px;
}

/* Navigation bar */
.navbar {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    background-color: #2a2a2a;
    border-bottom: 1px solid #3a3a3a;
}

.tab {
    cursor: pointer;
    color: #cfcfcf;
    padding: 5px 10px;
}

.tab:hover {
    color: white;
}

/* Content */
.content {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}