* {
    color: white;
    font-family: Outfit, sans-serif;
}

.material-symbols-rounded {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 200,
        'opsz' 24
}

span,
input {
    font-size: 20px;
    font-weight: 300;
}

html,
body {
    background-color: hsl(240, 10%, 20%);
    height: 100%;
    margin: 0;
    width: 100%;
}

.main {
    /*border: 1px solid black;*/
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: auto;
    width: 860px;
}

.content {
    display: flex;
    padding: 20px;
}

#response {
    flex-direction: column;
    margin-top: 50px;
    min-height: 0;
    overflow: auto;
}

.line {
    align-items: baseline;
    animation: slide 500ms ease-in-out;
    display: flex;
    margin-bottom: 10px;
}

.hr {
    margin: 0 !important;
}

hr, input:disabled {
    color: hsl(240, 10%, 60%);
}

@keyframes slide {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1s;
    }
}

.lyric {
    flex-basis: 516px;
    flex-shrink: 0;
    margin-left: 2em;
    margin-right: 20px;
    text-indent: -2em;
}

.source {
    color: hsl(0, 0%, 70%);
    font-size: 14px;
    margin-left: 2em;
    text-indent: -2em;
}

#prompt {
    align-items: center;
    background-color: hsl(240, 10%, 30%);
    border-radius: 10px;
    margin-bottom: 50px;
}

#prompt span {
    margin-right: 6px;
}

#prompt input[type=text] {
    background: none;
    border: none;
    border-bottom: 1px solid hsl(0, 0%, 60%);
    flex-grow: 1;
    transition: border 100ms ease-in-out;
}

#prompt input:focus {
    border-bottom: 1px solid hsl(0, 0%, 80%);
    outline: none;
}

#prompt .ms {
    color: hsl(0, 0%, 90%);
    cursor: pointer;
    font-size: 32px;
    margin-left: 6px;
    margin-right: 0;
    transition: color 100ms ease-in-out;
    user-select: none;
}

#prompt .ms:hover {
    color: hsl(0, 0%, 100%);
}

#error {
    animation: slide 500ms ease-in-out;
    background-color: white;
    border-radius: 5px;
    display: none;
    padding: 10px 15px;
}

#error-text {
    color: black;
}

.space {
    flex-grow: 1;
}