body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1b1d1e;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.terminal {
    width: 95%;
    height: 95%;
    max-width: 1600px;
    background-color: #2e2e2e;
    border-radius: 2px;
    overflow-y: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    background-color: #444;
}

.terminal-header div {
    width: 12px;
    height: 12px;
    margin: 4px;
    border-radius: 50%;
}

.resume-link {
    color: #00ff00;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin-left: auto;
    margin-right: 20px;
}

.resume-link:hover {
    text-decoration: underline;
}

.close {
    background-color: #ff5f56;
}

.minimize {
    background-color: #ffbd2e;
}

.maximize {
    background-color: #27c93f;
}

.terminal-body {
    padding: 20px;
    color: #27c93f;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    min-height: 200px;
}

.cursor {
    display: inline-block;
    background-color: #27c93f;
    width: 10px;
    height: 20px;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
