body {
  background-color: brown;
  color: rgba(255, 255, 255, 0);
  font-family: Verdana;
}

*{
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    margin:0;
    background:#af8a6c;
}

label{
    color:black
}

header{
    background:#6b4b24;
    color:white;
    padding:20px;
    text-align:center;
    font-size:30px;
}

#creator{
    background:#f5f5f5;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:10px;
    border-bottom:4px solid #999;
}

input,select,textarea{
    width:100%;
    padding:8px;
}

textarea{
    resize:vertical;
    min-height:60px;
}

button{
    padding:10px;
    background:#2d8f45;
    color:white;
    border:none;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#256f36;
}

.board{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding:20px;
}

.section{
    position:relative;
    background:#c89f62;
    border:8px solid #7b5b35;
    border-radius:8px;
    min-height:700px;
    overflow:hidden;
}

.section h2{
    text-align:center;
    margin:0;
    padding:10px;
    background:#7b5b35;
    color:white;
}

.canvas{
    position:relative;
    height:650px;
}

.note{
    position:absolute;
    width:220px;
    min-height:180px;
    padding:12px;
    cursor:grab;
    border-radius:4px;
    box-shadow:3px 3px 10px rgba(0,0,0,.3);
    user-select:none;
}

.note h3{
    margin:0;
}

.note small{
    color:#333;
}

.note p{
    margin-top:10px;
    white-space:pre-wrap;
}

.controls{
    margin-top:10px;
    display:flex;
    justify-content:space-between;
}

.controls button{
    font-size:12px;
    padding:5px 8px;
}

.help{
    padding:15px;
    text-align:center;
    color:#444;
}
