body {
    font-family: sans-serif;
    background-color: #282828;
    text-align: center;
    color: #ebdbb2;
}

form {
    text-align: center;
}

label {
    display: inline-block;
    margin-bottom: 5px;
}

input {
    text-align: center;
    display: inline-block;
    padding: 4px;
    border: 2px solid #504946;
    border-radius: 4px;
    color: #ebdbb2;
    background-color: #3c3836;
}

select {
    text-align: center;
    display: inline-block;
    padding: 4px;
    border: none;
    border-radius: 4px;
    color: #ebdbb2;
    background-color: #3c3836;
    border: 2px solid #504946;
    -webkit-appearance: none;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #8ec07c;
    color: #282828;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #689d6a;
}

#prealtText {
    text-align: left;
    font-family: monospace;
    white-space: pre-wrap;
}
#results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#collage {
    width: 80%;
    max-width: 500px;
    height: auto;
    flex-shrink: 0;
}

#altText {
    display: flex;
    flex-direction: column;
    max-width: 90%;
}

@media (min-width: 768px) {
    #results {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    #altText {
        max-width: 400px;
    }
}
