@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');

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

html, body {
    height: 100%;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #121212;
    color: #f5f5f5;

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

    position: relative;
    overflow: hidden;
}

/* CENTER TEXT */
.center-quote {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
    color: #e8d7c3;
    text-align: center;
    max-width: 900px;
    line-height: 1.4;
    padding: 2rem;
}

/* BOTTOM-RIGHT SIGNATURE */
.signature {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    font-size: 1.1rem;
    color: #5a7a9e;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .center-quote {
        font-size: 2rem;
    }

    .signature {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.95rem;
    }
}
