

h2 {
    letter-spacing: 1.5px;
}
/*photo gallery*/
   .right {
        text-align: left;
        max-width: 700px;
        min-width: 400px;
        margin: 144px 20px 44px 30px;
       display: flex;
       flex-direction: column;
    }


            
/*photo gallery*/
        .slider {
            justify-self: center;
            margin-top: 0px;
            width: 600px;
            height: 450px;

            overflow: hidden;
            text-align: center;

            padding-bottom: 70px;
            min-width: 600px;
        }

            .image-container {
                width: 1800px;
                background-color: pink;
                height: 450px;
                clear: both;
                position: relative;
                -webkit-transition: left 2s;
                -moz-transition: left 2s;
                -o-transition: left 2s;
            transition: left 2s;
              }
            .slide {
                float: left;
                margin: 0px;
                padding: 0px;
                position: relative;
            }
                  #slide-1:target ~ .image-container {
                    left: 0px;
                  }
                  #slide-2:target ~ .image-container {
                    left: -600px;
                  }
                  #slide-3:target ~ .image-container {
                    left: -1200px;
                  }
                  

            .buttons {
                position: relative;
                top: 15px;
              }
                .buttons a {
                    display: inline-block;
                    height: 15px;
                    width: 15px;
                    border-radius: 10px;
                    margin-left: 5px;
                    background-color: darkgreen;
                  }

                .buttons p{
                    font-weight: 300;
                    font-size: 8pt;
                    font-style: normal;
                    letter-spacing: 1px;
                    margin-top: 5px;
                }

