
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #0d1117;
    color: #c9d1d9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.terminal {
    width: 100%;
    max-width: 600px;
    background-color: #161b22;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.terminal-header {
    background-color: #21262d;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.title {
    margin-left: auto;
    margin-right: auto;
    color: #c9d1d9;
    font-weight: bold;
    font-size: 14px;
}

.terminal-body {
    padding: 24px;
}

.prompt {
    color: #58a6ff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 16px;
}

.text {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #238636;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease-in-out;
}

.button:hover {
    background-color: #2ea043;
}
