/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #70c5ce;
    color: #333;
    display: flex;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
    padding-top: 50px;
    width: 100%;
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* About Section (Header and Terminal) */
.content {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Header */
.intro h1 {
    font-size: 2.5em;
    color: #0A4D8C;
    margin-bottom: 20px;
    padding-top: 25px;
}

/* Terminal Design */
.terminal {
    margin-top: 20px;
    background-color: #263A51;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
}

.window-bar {
    background-color: #4A4A4A;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #D1D1D1;
}

.window-dot.red {
    background-color: #FF5F56;
}

.window-dot.yellow {
    background-color: #FFBD2E;
}

.window-dot.green {
    background-color: #27C93F;
}

.terminal-content {
    font-family: 'Courier New', monospace;
    color: #fff;
    margin-top: 15px;
}

.terminal-content p {
    margin: 0;
    margin-left: 20px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.prompt {
    color: #F5F5F5;
}

.command {
    color: #C8E0FF;
}

.terminal-content p.output {
    color: #A0D911;
    margin-bottom: 20px;
}

.output a {
    color: #A0D911;
    text-decoration: none;
}

.output a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 2em;
    }

    .terminal-content p {
        margin: 0;
        margin-left: 10px;
    }
    body {
        padding-top: 0; /* Add padding from the top */
    }
    div.intro {padding: 0 15px 0 15px;}

    .chatbox{
        width: 300px;
        height: 250px;
    }
}