
/* ======= Header ======= */

.button1 {
  display: inline-block;
  border-radius: 6px;
  background-color: #00abcd;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 6px;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button1 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}


.button1:hover span {
  padding-right: 15px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
}



/* ======= Gallery ======= */

.gallery img {
    width:320px;
    height:320px;
    margin:10px 8px;
    transition: 0.25s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    border-radius: 4px;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
