body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle, #f0f0f0, #e0e0e0);
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 5vh;
}

header h1 {
    font-size: 2.5em;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

main {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    padding: 15px;
    border-left: 3px solid #333;
    text-align: left;
}

.quote p:first-child {
    font-size: 1.2em;
}

.quote p:last-child {
    font-size: 0.9em;
    margin-top: 5px;
    text-align: right;
}

footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer img {
    vertical-align: middle;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}