h3 {
    margin-top: 0px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / .1), 0 -0.5rem 1rem rgb(0 0 0 / .1);
    margin: 10px;
    padding: 30px;
    padding-top: 0px;
    gap: 12px;
}

.subtitle {
    max-width: 800px;
    text-align: center;
}

.song-samples-wrapper {
    text-align: center;
    margin-top: 4px;
    border: 1px solid #c0c0c0;
    padding: 14px;
    border-radius: 16px;

}

.song-samples {
    display: flex;
    column-gap: 12px;
    row-gap: 12px;
    margin-top: 12px;
}

.song-samples-title {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 4px;
}

.song-samples audio {
    max-width: 240px;
}

.song-sample {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
}


.song-generator {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: auto;
    max-width: 700px;
}

.song-generator h2 {
    text-align: center;
    margin: 0px;
    margin-top: 20px;
}

#generate-song-text {
    width: 200px;
    margin: auto;
    margin-top: 20px;
}

.field {
    font-size: 1.2em;
    width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.field:first-of-type {
    margin-top: 12px;
    padding-top: 0px;
}

.field input, .field select, .field textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.2em;
    color: black;
    padding: 7px 0;
    padding-left: 6px;
    background: transparent;
    transition: border-color 0.2s;
    border-radius: 0;
}

.field input::placeholder {
    color: #cccccc;
}

.field textarea {
    border: 2px solid #9b9b9b;
    margin-top: 8px;
}

.field label {
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field input:hover,
.field select:hover,
.field textarea:hover {
    background: #e8e8e8;
    border-bottom: 2px solid #121212;
}

.field:hover label,
.field:focus-within label {
    color: black;
}

.field textarea:hover,
.field textarea:focus {
    border: 2px solid #121212;
}

.field.required label:after {
    content:" *";
    color: red;
}

.song-generator button {
    font-size: 1.2em;
    padding: 8px 12px;
    font-weight: bold;
}

.songs {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    row-gap: 50px;
}

.song {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.song-heading {
    font-weight: bold;
    margin-bottom: 0px;
}

.song-cover {
    height: 256px;
    width: 256px;
}

.song-control audio {
    max-height: 40px;
}

.lyrics-heading {
    margin-top: 20px;
    margin-bottom: 4px;
    text-align: center;
}

.lyrics-subheading {
    font-style: italic;
    text-align: center;
    font-size: 0.9em;
}

.lyrics {
}

.lyrics b {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

.lyrics b + br {
    display: none;
}

.warn {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #c76600;
    border-radius: 12px;
    margin-bottom: 17px;
    background: #f9ed9e;
}

.warn img {
    height: 2.5em;
    width: 2.5em;
    margin-right: 12px;
}

.song-timer-value {
    font-family: 'Courier New', Courier, monospace;
}

.song-attrs {
    max-width: 450px;
    margin-top: 15px;
    font-size: 0.9em;
}

.tech-info {
    color: #9b9b9b;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
}

.tech-info a {
    color: #9b9b9b;
}

#song-action {
    font-size: 1.3em;
    font-weight: bold;
}


@media (max-width: 767px) {
    .song-samples {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .songs {
        flex-direction: column;
    }
}