#camping {

    background-color: #e6f2d9;

    padding: 20px;

    margin-top: 20px;

}


.title {

    color: #2f5d34;

    font-family: Georgia, serif;

    font-size: 32px;

    text-align: center;

}



/* Paragraph styling */

.paragraph {

    color: #444444;

    font-family: Arial, sans-serif;

    font-size: 18px;

    text-align: center;

}



/* Heading styling */

.heading {

    color: #8b5a2b;

    font-family: Verdana, sans-serif;

}



/* Div styling */

.box {

    background-color: #fff2cc;

    border: 2px solid #8b5a2b;

    padding: 15px;

}



/* Image styling */

.picture {

    width: 350px;

    border-radius: 10px;


    /* Transform */

    transform: rotate(-3deg);


    /* Transition */

    transition: 0.5s;


    /* Animation */

    animation: fadeImage 3s infinite;

}



/* Hover transformation */

.picture:hover {

    transform: scale(1.05);

}



/* Simple animation */

@keyframes fadeImage {


    0% {

        opacity: 1;

    }


    50% {

        opacity: 0.7;

    }


    100% {

        opacity: 1;

    }


}