body {
    font-family: 'Courier New', Courier, monospace;
    background: #000000;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000000;
}

canvas {
    position: relative;
    display: block;
    background-color: #000000;
}


#container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#code-editor {
    background: #00000075;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px #48f22267; */
    overflow: hidden;
}



#compiler-status {
    margin: 20px 0;
}

#status-message {
    font-size: 1em;
    margin-bottom: 30px;
}

#progress-bar {
    background: #000000;
    height: 5px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 2px #32fff1;
}

#progress {
    background: #49f222;
    background: linear-gradient(90deg, #49f222 0%, #32fff1 100%);
    height: 100%;
    width: 0;
    transition: width 1s ease;
}

#countdown {
    margin: 30px 0;
    font-size: 1em;
}

#message {
    margin: 40px 0;
}
#message h1{
    font-size: 2.5em;
    font-weight: 100;

}

/* input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1em;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #61afef;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background: #4b8fda;
} */

#console {
    margin-top: 20px;
    background: #00000070;
    padding: 10px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
}

#console-input {
    width: calc(100% - 22px);
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #282c34;
    color: #abb2bf;
}

#console-output {
    margin-top: 10px;
    white-space: pre-wrap;
}
#code-display {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 1em;
}

.keyword {
    color: #32fff1; 
}

.interactive {
    color: #ffc212; 
    cursor: pointer;
    text-decoration: underline;
}

.interactive:hover {
    color: #be5046;
}
#typing-effect {
    background: rgba(0, 0, 0, 0.7);
    padding: 0px 20px;
    height: 80px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-radius: 8px;
    margin: 20px 0;
}

#typing-text {
    font-family: 'Courier New', Courier, monospace;
    color: #abb2bf;
    white-space: pre-wrap;
    text-align: left;
    overflow: hidden;
    margin-top: 0px;
    font-size: .8em;
    /* border-right: 2px solid #abb2bf; Cursor effect */
    /* animation: blink-caret 0.75s step-end infinite; */
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000000; 
    border-radius: 10px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: #ffc212; 
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #b08505; 
  }

