body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    color: #39ff14;
    flex-direction: column;
    font-family: 'IBM Plex Serif', serif;
}

.center-text {
    font-size: 24px;
    color: #39ff14;
    font-weight: bold;
    margin-bottom: 20px;
}

.body-text {
    color: #39ff14;
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
}

a:visited {
    color: #D300FF;
}

.projects-button {
    background-color: transparent;
    color: #39ff14;
    border: 2px solid #39ff14;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Serif', serif;
    text-decoration: none;
    margin-top: 20px;
    width: 200px;
    display: inline-block;
    text-align: center;
}

.projects-button:hover {
    background-color: #39ff14;
    color: black;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    margin: 20px 0;
}

.project-card {
    background-color: rgba(57, 255, 20, 0.1);
    border: 2px solid #39ff14;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    background-color: rgba(57, 255, 20, 0.2);
    transform: scale(1.02);
}

.project-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #39ff14;
}

.project-description {
    font-size: 1.1em;
    color: #39ff14;
}

.projects-grid::-webkit-scrollbar {
    width: 8px;
}

.projects-grid::-webkit-scrollbar-track {
    background: rgba(57, 255, 20, 0.1);
    border-radius: 4px;
}

.projects-grid::-webkit-scrollbar-thumb {
    background: #39ff14;
    border-radius: 4px;
}

.blogs-container {
    display: flex;
    width: 80vw;
    max-width: 900px;
    height: 60vh;
    margin: 40px auto 0 auto;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.blogs-sidebar {
    width: 200px;
    min-width: 140px;
    max-width: 220px;
    background: rgba(57,255,20,0.08);
    border-right: 4px solid #39ff14;
    overflow-y: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 4px 0 8px -4px #39ff1433;
}

.blog-title {
    color: #39ff14;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1.1em;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.blog-title.selected, .blog-title:hover {
    background: rgba(57,255,20,0.15);
    border-left: 4px solid #39ff14;
    font-weight: bold;
}

.blog-content {
    flex: 1;
    padding: 32px 40px;
    color: #39ff14;
    overflow-y: auto;
}