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

.terminal {
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 20px #33ff33;
    width: 600px;
    max-width: 90%;
}

.header {
    background-color: #333;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    display: flex;
    gap: 5px;
}

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

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

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

.title {
    color: #fff;
    font-size: 14px;
}

.body {
    padding: 20px;
}

.prompt {
    color: #33ff33;
}

.command {
    color: #ff3333;
}

.content {
    color: #fff;
}

.info {
    color: #33ff33;
}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #33ff33;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #444;
}
