body {
    padding: 0;
    margin: 0;
    justify-content: center;
    font-family: sans-serif;
    background-color: #f5f5dc;
}

main {
    margin: 4vh 0;
    gap: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    text-decoration: underline;
}

.form_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 40vw;
    background-color: #9d825d;
    padding: 12px;
    border: 1px solid #000;
}

.non-submit {
    height: 2vh;
    background-color: #f5f5dc;
}

.submit {
    border: none;
    background-color: #e4d5b4;
}

.submit:hover {
    background-color: #d2b48c;
}

.image-input[type="file"]::file-selector-button {
    width: 100%;
    border: none;
    background-color: #e4d5b4;
}

.image-input[type="file"]::file-selector-button:hover {
    background-color: #f5f5dc;
}

form {
    display: flex;
    flex-direction: column;
}