
/* style.css */



.gallery{

    display: inline-block;

    border: 1px solid hsl(0, 0%, 60%);

    margin: 5px;

    width: 500px;

}

.gallery .description{

    padding: 10px;

    text-align: center;

}

.gallery:hover{

    border: 1px solid hsl(0, 0%, 20%);

}

.gallery img{

    width: 100%;

    height: auto;

}
.button {
  border: 2px solid black;
  background-color: #e7e7e7;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
