body{
    background-color:EEE6DD;
}
.item2 {
    display: flex;    
    background-color: white;    
    padding: 20px;             
    border-radius: 15px;       
    margin: 40px auto;              
    gap: 20px;                 
    width: fit-content;        
    max-width: 90%;   
    flex-direction: column; 
}
.combine{
    display: flex;
    align-items: center;
}
.item2img img {
    max-width: 700px; 
    width: 100%;
    height: auto;
}
.title{
    text-align: center;
    font-family: "Londrina Outline";
    font-size: 70px;
     margin-bottom: 20px;
     color:#434867 ;
}
.item2-text p {
    font-size: 24px;
    font-family:"Quicksand";
}

.item2-text h2 {
    font-family: "Madimi One";
    font-size: 30px;
    background-color: #ECB3B4; 
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;  
    width: fit-content; 
    color: #434867;       
}
.item2-text h3{
    font-family: "Madimi One";
    font-size: 30px;
    color:434867 ;
}


@media screen and (max-width: 700px){
    .combine{
        flex-wrap: wrap-reverse;

        .item2-text h3{
            text-align: center;
        }
    }
}