* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4edde;
    color: #111111;
    font-family: Georgia, serif;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: min(800px, 90%);
    text-align: center;
}

#tile-image {
    width: 140px;
    margin-bottom: 60px;
}

#quote {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

#author {
    font-size: 1rem;
    color: #666;
}