/* style.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-window {
    width: 80%;
    max-width: 600px;
    min-height: 300px;
    background-color: #300a24;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.terminal-header {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 20px;
}

.terminal-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70px;
    height: 100%;
}

.terminal-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
}

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

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

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

.terminal-text {
    white-space: pre;
    margin-top: 20px;
}

.cursor {
    animation: blink 1s infinite;
}

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