
body {
    margin: 0;
    background-color: #000000;
    color: #fff;
    height: 100%;
    overflow: hidden;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: #191919;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    padding: 10px 0; 
}

.sidebar ul {
    margin: 0;
    padding: 0;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain; 
}

.social-icon:hover {
    transform: scale(1.2); 
    cursor: pointer;
}

.sidebar li {
    margin: 20px 0;
    text-align: center;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 24px;
}

.sidebar a:hover {
    color: #e6a8f6;
}

.sidebar .tab.active a {
    color: #e6a8f6;
}
.sidebar a:hover {
    color: #e6a8f6;
}

.top-tab {
    position: fixed;
    top: 0;
    left: 200px;
    height: 30px;
    width: 120px;
    background-color: #1e1e1e;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 20px;
    z-index: 9;
    text-align: center;
    line-height: 30px;
    border-radius: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.top-tab span {
    text-transform: capitalize;
    color: #e6a8f6;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 220px; 
    padding: 50px;
    color: #fff;
    font-family: 'Arial Narrow';
}

.about-text {
    font-family: 'Open Sans', sans-serif; 
    width: 60%; 
    line-height: 1.8;
    font-size: 18px;
    color: #fff;
}


.about-image img {
    max-width: 300px;
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); 
}
