/*home section*/

        #home {
            height: 500px;
            background: radial-gradient(#306844, #2C4C3B);
            text-align: center;
        }

        #home h1 {
            text-transform: uppercase;
            font-size: 99px;
            font-weight: 800;
            padding-top: 80px;
            margin: 0;
            color: #fff;
        }

        #home p {
            color: #fff;
            font-size: 24px;
            font-family: Lora, 'Helvetica', 'Arial', sans-serif;
            font-weight: 100;
            line-height: 40px;
        }

        /*About section*/

        #about {
            background-color: #fff;
            height: 200px;
            text-align: center;
        }

        #croboot {
            max-width: 100%;
            margin-top: -230px;
        }

        #about-container {
            list-style: none;
            color: #767676;
            display: flex;
            justify-content: center;
            padding: 15px;
            margin: 0;
            font-size: 17px;
            font-family: Lora, 'Helvetica', 'Arial', sans-serif;
            font-weight: 100;
        }



        /*mobile phones*/

        @media all and (max-width: 500px) {


            /*header section*/
            #croboot {
                max-width: 100%;
                margin-top: -170px;
            }


            
                


            /*home section*/
            #home h1 {
                font-size: 60px;
               
            }

            #home p {
                font-size: 20px;
            }


            /*about section*/
            #about {
                height: auto;
            }

            #about-container {
                display: flex;
                flex-direction: column;
            }

        }


        .gallery-wrapper {
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            height: auto;
            
           
          }
          
          .gallery {
            margin: 0;
            padding: 0;
            list-style: none;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            
          }
          
          .gallery-item:not(:last-of-type) {
            margin-bottom: 40px;
          }
          
          .gallery-img {
            max-width: 100%;
             border-radius: 20px 20px 0px 0px;
          }
          
         
          .gallery-im-caption {
            margin: 0;
            padding: 8px;
            background: #3a3a3a;
            color: #f2f2f2;
            border-radius: 0px 0px 20px 20px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          }
          
          @media screen and (min-width: 769px) {
            .gallery-wrapper {
              max-width: 1240px;
            }
          
            .gallery {
              flex-direction: row;
              flex-wrap: wrap;
              justify-content: center;
            }
          
            .gallery-item {
              padding: 20px;
            }
          
            .gallery-img {
              min-width: 350px;
              max-width: 350px;
            }
          }