hr {
    border: 1px solid white;
    width: 90%;
    margin: 15px auto;
}

label {
    font-weight: bold;
}

select {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    outline: none;
    color: black;
}

#response {
    background: white;
    border-radius: 10px;
    margin: auto;
    font-size: 18px;
    text-align: left;
    padding: 10px;
    margin-top: 20px;
    font-style: italic;
    color: black
}



#response:empty {
    text-align: center;
    background: unset;
}

#response:empty:before {
    content: '';
    display: inline-block;
    font-size: 24px;
    width: 1em;
    text-align: left;
    animation: dots 2s steps(4, end) infinite;
    white-space: nowrap;
    overflow: hidden;
    height: 30px;
    font-weight: bold;

}

@keyframes dots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}

#response a {
    text-decoration: underline;
}

#response a:before {
    content: "👉 ";
}