/* Page background */
body {
    height: 285px;

    /* Gradient overlay + background image */
    background-image:
        linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85)),
        url("math.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 20px;
    border: #ffffff 5px solid;
    border-width: 25px;
    margin: 50px auto;
}

/* Main container effect */
h1, p {
    text-align: center;
}

/* Title */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Quote text */
#quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 15px;
    max-width: 600px;
    line-height: 1.6;
}

#philosopher {
    font-size: 1.2rem;
    font-weight: bold;
}