/* resume.css */

body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 2rem;
}

.resume-container {
    max-width: 900px;
    margin: auto;
    padding: 1rem;
    border: 2px solid #0f0;
    border-radius: 10px;
    box-shadow: 0 0 15px #0f0;
    background-color: #000;
}

.loading-screen {
    font-size: 1.5rem;
    color: #0f0;
    text-align: center;
    padding: 2rem;
}

.resume-content {
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-size: 1rem;
    line-height: 1.6;
    min-height: 400px;
}

.resume-link {
    display: inline-block;
    margin-top: 20px;
    color: #0f0;
    text-decoration: underline;
    font-weight: bold;
}

.resume-link:hover {
    text-shadow: 0 0 5px #0f0;
}

