/* 
colours: 
#002255;
#F9E6C1
#b0cece

*/

body {
    background-image: url("resources/bridge.webp");
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    min-width: 1000px;
    cursor: default;
}   

.container {
    display: flex;
    min-height: 100vh;
}

.notebook {
    font-family: "Roboto Flex";
    font-weight: 500;
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 500px;
    max-width: 1000px;
}

.notebook-window{
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: #F9E6C1;
    display: flex;
    flex-direction: column;
    border-bottom: 40px solid #F9E6C1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.notebook-title-bar{
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(white, #bcbcbc);
    height: 30px;
    padding: 0 8px;
    box-sizing: border-box;
    border-bottom: 2px solid #6e6e6e;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.notebook-title{
    font-family: "Roboto Flex";
    font-weight: 800;
    font-size: 1em;
    position: relative;
    margin: 0 auto;
}

.notebook-menu-bar {
    display: flex;
    align-items: center;
    position: relative;
    background: #bcbcbc;
    height: 30px;
    padding: 0 8px;
    box-sizing: border-box;
    border-bottom: 2px solid #6e6e6e;
}

.notebook-body {
    color: #002255;
    font-size: 1.8em;
    font-weight: 600;
}

.terminal {
    font-family: 'Courier New', monospace;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin-top: 40px;
}

.terminal-window {
    display:flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background: #002b36;
}

.terminal-title-bar {
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(#000000, #222222);
    height: 30px;
    padding: 0 8px;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.terminal-buttons {
    position: absolute;
    left: 8px;
    display: flex;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 10px;
    
}

.terminal-title {
    color: white;
    margin: 0 auto;
}

.terminal-body {
    flex: 1;
    padding: 10px;
    min-height: 450px;
    color: white;
    
}

/* default text: ex OS: (this part) */
.terminal-text {
    color: white;
    line-height: 1.5;
}

/* text used for titles: ex (this part): windows 10 */
.terminal-text-alt {
    color: #3498db;
    font-weight: bold;
}

/* text used for the simulated user inputs */
.terminal-text-system {
    color: #30D000;
}


h1 {
    font-weight: 400;
    font-size: 3.5em;
    margin: 0;
    white-space: break-spaces;
}

a {
    color: #002255;
    text-decoration: none;
}


a:hover {
    font-style: italic;
}

.blinker{
    animation: blink 1.2s infinite;
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: 4px;
    background: white;
    vertical-align: middle;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }   
}
#container {
    position: relative;
    display: flex;
    justify-content: center;
}






