body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e; /* Dark terminal background */
    color: #c9d1d9; /* Light text color */
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.line {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.prompt {
    margin-right: 10px;
    color: #e5e5e5;
    white-space: pre;
}

.cursor {
    width: 10px;
    height: 1.2em;
    background-color: #808080; /* Gray cursor */
    display: inline-block;
    animation: blink 1s step-end infinite;
}

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

.footer {
    padding: 20px;
    text-align: center;
    background-color: #1e1e1e;
}

.email-link {
    color: #58a6ff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 1;
    text-decoration: underline;
}
