* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
}

body {
    font-family: 'Courier New', monospace;
    background: #333333;
    color: white;
    height: 400vh;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    padding-top: 40px;
}

header img {
    width: 30%;
    height: auto;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
}

#editor {
    flex: 1;
    width: 100%;
    padding-left: 40px;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 20px;
    outline: none;
}

#editor:focus {
    outline: none;
}
