body {
    background-color: black;
    margin: 0;
    padding: 0;

    color: white;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    text-align: center;
    margin-top: 50px;
}

.textareas {
    width: fit-content;
    margin: auto;
    margin-top: 20px;
}
#output {
    background-color: rgb(45, 44, 44);
    color: white;
    font-family: 'Courier New', Courier, monospace;
}
#input {
    background-color: rgb(215, 209, 209);
    color: black;
    font-size: 17px;
}

textarea {
    padding: 10px;
    border: none;
    resize: none;
    background-color: darkgray;
    border-radius: 10px;
    width: 500px;
    height: 400px;
    margin: 10px;
}

.text {
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

button {
    border: none;
    border-radius: 10px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: ease-in-out 300ms;
}
button:hover {
    transition: ease-in-out 300ms;
}
button#format-button {
    background-color: green;
}
button#format-button:hover {
    background-color: rgb(0, 100, 23);
}
button#copy-button {
    background-color: rgb(0, 100, 128);
}
button#copy-button:hover {
    background-color: rgb(0, 78, 100);
}