#quoteViewer {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 600px;
    margin-top: 10em;
    transition: all ease 200ms;
}
#quoteViewer .quoteViewerImage {
    width: auto;
    height: inherit;
    object-fit: cover;

    border-radius: 32px 0px 0px 32px;
}
#quoteViewer .quoteViewerMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    width: 10em;
    height: inherit;
    padding: 0em 1em;

    font-size: 2em;
    text-align: start;

    background-color: white;
    color: black;
    border-radius: 0px 32px 32px 0px;
}
#quoteViewer .quoteAuthor {
    width: inherit;
    text-align: end;
}