@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --white: #fff;
    --black: #000;
    --window-bg: #3B4370;
    --bg: #5A6393;
    --yellow: #F7D917;
    --yellow-darker: #c8b42d;
}

body {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--bg);
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    border: 1px dashed var(--yellow);
    padding: 50px;
    margin: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
    color: var(--yellow);
    text-align: center;
}

.overlay p {
    max-width: 1000px;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.window {
    display: flex;
    flex-direction: column;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.window-header {
    background-color: var(--yellow);
    color: var(--bg);
    padding: 6px;
}

.window-header h1 {
    font-size: 1rem;
}

.console {
    width: 400px;
    height: 325px;
}

.console-output {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    overflow-y: scroll;
    padding: 8px;
}

.console-output-computer {
    color: var(--yellow);
}

.console-output-user {
    color: var(--white);
}

.console-input {
    display: flex;
    justify-self: end;
    padding: 8px;
}

.console input {
    width: 100%;
    background-color: var(--bg);
    color: var(--white);
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    border: 1px solid var(--yellow-darker);
}

.console input:focus {
    border: 2px solid var(--yellow-darker);
    outline: none;
}

.console-input button {
    background-color: var(--yellow);
    color: var(--bg);
    border: none;
    font-weight: 600;
    padding: 6px;
    transition: all .3s;
}

.console-input button:hover {
    cursor: pointer;
    background-color: var(--yellow-darker);
}


.timer {
    background-color: var(--yellow);
    color: var(--bg);
    text-align: center;
    padding: 12px;
}

.notes {
    width: 400px;
    height: 320px;
}

.notes-content {
    flex-grow: 1;
    padding: 8px;
}

.notes textarea {
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    color: var(--white);
    font-family: "IBM Plex Mono", monospace;
    border: 1px solid var(--yellow-darker);
}

.notes textarea:focus {
    border: 2px solid var(--yellow-darker);
    outline: none;
}

.button-audio {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--yellow);
    color: var(--bg);
    font-family: "IBM Plex Mono", monospace;
    border: none;
}

.button-audio:hover {
    cursor: pointer;
    background-color: var(--yellow-darker);
}

.hidden {
    display: none;
}