body {
    font-family: 'Cursive', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tip-container {
    text-align: center;
    flex-grow: 1;
}

.tip-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.author {
    padding-top: 15px;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

.tip {
    font-size: 2em;
}

.arrow {
    cursor: pointer;
    font-size: 2em;
    user-select: none;
}

.date {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}