body { 
		background: linear-gradient(to left, #EBA5C6, #f8d7e2); /* From dark pink to light whitish pink */
		margin: 0;
		padding: 0;
        font-family: 'Patrick Hand', cursive, Arial, sans-serif; 
        text-align: center; 
        /* margin-top: 50px; */
    }
	
    #content-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .container {
        position: relative;
        width: 400px;
        height: auto;
        display: inline-block;
    }

    .image {
        width: 100%;
        display: block;
    }

    .text-overlay {
        position: absolute;
        font-size: 20px;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
        transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
    }

    /* Assign distinct colors */
    .text1 {
        top: 20px; 
        left: 30px;
        background: #ff5733;
        color: white;
    }

    .text2 {
        top: 100px; 
        left: 100px;
        background: #33ff57;
        color: black;
    }

    .text3 {
        top: 180px; 
        left: 50px;
        background: #5733ff;
        color: white;
    }