body {

    font-family: 'Playpen Sans', cursive;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    padding: 2% 2%;

}

h1 {
    font-size: 3em; 
}

p {
    font-size: 1.5em;
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* Allow the content to wrap on smaller screens */
}

.section img {
    width: 50%;
    height: auto;
    margin: 0 auto;
    /* Center the image on smaller screens */

}

.section h1 {
    width: 50%;
    font-size: 24px;
    /* Adjust this value as needed */
    text-align: center;
    /* Aligns the text to the right side of the page */
}


/* Media query for mobile screens */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .section img,
    .section h1 {
        width: 100%;
        text-align: center;
    }

    .section h1 {
        justify-content: center;
        /* Center content on mobile screens */
        margin-top: 20px;
        /* Space between the image and text on mobile screens */
    }
}