body {
    background-color: #000;
    font-family: 'DejaVu Sans Mono', monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.terminal {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    width: 80%;
    max-width: 800px;
    height: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terminal-header {
    background-color: #282828;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3a3a3a;
}

.terminal-title {
    font-size: 14px;
    color: #dcdcdc;
}

.terminal-buttons {
    display: flex;
}

.terminal-button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid #3a3a3a;
}

.terminal-button.close {
    background-color: #ef5350;
}

.terminal-button.minimize {
    background-color: #ffca28;
}

.terminal-button.maximize {
    background-color: #66bb6a;
}

.terminal-body {
    padding: 12px;
    overflow-y: auto;
    flex-grow: 1;
}

.prompt {
    color: #1be314;
}

a {
    color: #0cff03;
}

#cursor {
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
    from, to { color: transparent }
    50% { color: #4caf50; }
}

@media (max-width: 600px) {
    .terminal {
        height: 95%;
    }
}

.bio-image {
    width: 50%;
    max-width: 200px;
    height: auto;
    overflow: hidden;
    margin: 20px auto;
    display: block;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-info {
    text-align: center;
    margin-bottom: 20px;
}

.bio-info h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.bio-section {
    margin-bottom: 20px;
}

.bio-section h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.bio-section p, ul {
    font-size: 14px;
    line-height: 1.6;
}

.bio-section ul {
  padding-left: 20px;
}
