html,
body {
    font-family: sans-serif;
    height: 100%;
    margin: 0;
    background-color: black;
}

.editor-container {
    position: relative;
    height: 100%;
}

textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    font-size: 1rem;
    background: black;
    color: grey;
    padding: 20px;
    box-sizing: border-box;
}

.fake-placeholder {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #555;
    pointer-events: none;
}

.fake-placeholder h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #888;
}

.fake-placeholder p {
    margin-top: 8px;
    color: #666;
}
