body {
    background-color: #BAB5B2;
    font-size: 16px;
    font-family: "Segoe UI", sans-serif;
    margin: 20px;
}

h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;;
}

h3 {
    margin: 0;
}

progress {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 10px;
}

::-webkit-progress-bar {
    background-color: #FFF;
    border-radius: 10px;
}

::-webkit-progress-value {
    background-color: #38322C;
    border-radius: 10px;
}

p {
    margin: 0;
}

label {
    font-size: 12px;
}

input {
    font-size: 16px;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 4px;
    box-sizing: border-box;
}

input[type=file] {
    padding: 0;
    border-radius: 0;
}

span {
    display: flex;
    gap: 10px;
}

button {
    border: none;
    border-radius: 8px;
    background-color: #38322C;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-wrap: nowrap;
    cursor: pointer;
}

audio {
    width: 100%;
}

#upload_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content {
    max-width: 720px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audio {
    background-color: #E0E0E0;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.title {
    width: 50%;
}

.artist {
    width: 50%;
}

.metadata {
    display: flex;
}