/* Basic reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --text-color: #222;
    --background-color: #fff;
    --quote-color: #444;
}

body {
    margin: 0;
    min-height: 100vh;

    background-color: var(--background-color);
    color: var(--text-color);

    font-family:
        Verdana,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;
    line-height: 1.5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.fortune {
    margin-top: 3rem;
    text-align: center;

    color: var(--quote-color);

    /* Preserve newlines and tabs from the API response */
    white-space: pre-wrap;

    font-size: 0.9rem;
    line-height: 1.6;
}

a:hover {
    color: red;
}