body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.toolbar {
    margin-bottom: 10px;
}

.toolbar button, .toolbar select {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #272728;
    color: white;
}

.toolbar button:hover, .toolbar select:hover {
    background-color:  #272728bc;
}

#editor {
    height: 500px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    overflow-y: auto;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color:  #272728;
    color: white;
}

button:hover {
    background-color: #272728bc;
}
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .toolbar button, .toolbar select {
        font-size: 14px;
    }

    #editor {
        font-size: 14px;
    }
}