/*Align at the bottom right*/
#louis {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;

}

@media (max-width: 1081px) {
    #louis {
        height: 66%;
    }
}

blockquote {
    width: 66%;
    font-size: 100%;
    font-size: calc(16px + (144 - 16) * ((100vmin - 300px) / (1920 - 300)));
}

textarea {
    font-size: 100%;
    font-size: calc(16px + (144 - 16) * ((100vmin - 300px) / (1920 - 300)));
    border: none;
    min-height: 1em;
    resize: none;
    width: 100%;
    overflow: hidden;
}

p cite {
    font-size: calc(12px + (72 - 12) * ((100vmin - 300px) / (1920 - 300)));
}

button, #result {
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 0.5em 1.2em;
    margin: 0.5em 0;
    font-size: calc(12px + (18 - 12) * ((100vmin - 300px) / (1920 - 300)));
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    outline: none;
}

.controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

#create, #copy, #result {
    margin-top: 1em;
    margin-bottom: 1em;
    background-color: #333;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-left: 15px;
}

#result {
    text-align: center; 
    margin-left: 15px;
    text-decoration: none;
    display: none;
}