body {
    font-family: Kreon, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    background-color: #0F0D0E;
    color: #FFF6E2;
}
h1 {
    font-size: 40px;
    font-weight: bold;
    color: #EFC851;
}

#docs {
    margin-top: 200px;
    font-size: 16px;
}

a {color: gold;}
a:visited {color: gold;}


#drop-area {
    border: 4px dashed #9C601F;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #5E4243;
    transition: background-color 0.3s ease;
}
#drop-area.hover {
    background-color: #805A5B;
}

button {
    padding: 10px 20px;
    font-family: Kreon, sans-serif;
    font-size: 22px;
    font-weight: bold;
    background-color: #2A8C40;
    color: #FFEDA7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-shadow: 1px 1px 2px black;
    box-shadow: 1px 1px 5px #333;
}
button:hover {
    color: #EFC851;
    box-shadow: 1px 1px 6px #111;
}

#output {
  padding: 40px 0;
  font-weight: bold;
}


.container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1200px;
    gap: 20px;
}
/* Row with two elements */
.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.left-column {
    flex: 0.7;
    padding: 20px;
    padding-top: 80px;
    border-radius: 8px;
}
.right-column {
    flex: 1.3;
    background-color: #42535C;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
div#textbox {
    width: 100%;
    height: 500px;
    padding: 0px;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 4px;
}