body {
    background-color: #0c1c4f; 
    color: #c3c3de;           
    
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    overflow: hidden;
    
    /* transition: background-color 0.5s ease; */
}

#terminal {
    white-space: pre;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    
}

#modal-content {
    width: 80%;
    height: 80%;
    max-width: 800px;
    max-height: 600px;
}

#modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hidden {
    display: none;
}