
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.settings-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.load-file-button {
    display: flex;
    height: 4em;
    width: 13em;
    border: none;
    color:rgb(231, 244, 255);
    background-color: rgb(0, 150, 0);
    font-size: 1.2em;
    font-weight: 600;
    border-radius: .3rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

input[type='file'] {
    display: none;
}

#convert-button {
    width: 13em;
    font-size: 1em;
}

.error-text {
    font-size: 1em;
    color: crimson;
    margin: 0;
    margin-top: .5em;
}