body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffd966;
    color: #333;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
}

header {
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5em;
    color: #800080;
    font-weight: bold;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.text-left {
    flex: 1;
    text-align: left;
    margin-right: 20px;
    font-size: 1.2em;
    color: #555;
}

.highlight {
    font-size: 1.5em; 
    color: #800080;
    margin-top: 0px;
}

.temp {
    font-size: 1.5em;
    text-align: center;
    color: #555;
}

.image-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-right img {
    width: 75%;
    height: auto;
    border-radius: 50%;
}

.bottom-section {
    text-align: center;
}

.bottom-section p {
    font-size: 1.2em;
    color: #555;
}

hr {
    border: none;
    height: 2px;
    background-color: #333;
    margin: 20px 0;
}

hr.chapter-divider {
    height: 1px;
    margin: 20px auto;
}

/* Responsive */
@media (max-width: 600px) {
    .top-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-right img {
        width: 100%;
        border-radius: 50%;
    }

    .text-left {
        width: 100%;
        margin-right: 0;
    }
}