/*font-family: 'Amatic SC', cursive;
font-family: 'Shrikhand', cursive;
font-family: 'Alfa Slab One', cursive;
font-family: 'Comfortaa', cursive;*/
html {
  background-color: #d8f7f8;
}

.paliPage {
  background-image: url(images/wood-cube.jpeg);
}

#top{
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

#palHeader {
  font-family: 'Shrikhand', cursive;
  font-size: 500%;
  letter-spacing: 3px;
}

#giphyHeader {
  font-family: 'Alfa Slab One', cursive;
  font-size: 300%;
  letter-spacing: 2px;
}

input[type=text] {
    padding: 14px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    background-color: lightgray;
    border-radius: 5px;
  }

#goBtn {
  padding: 12px 18px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  background-color:	#42d162;
  color: black;
  font-size: 22px;
}

#lists{
  text-align: center;
  position: relative;
}

ul {
  list-style: none;
  display: inline-block;
  text-align: center;
  height: 100%;
}

li{
  display: block;
}


#pali{
  padding-left: 0;
  padding-right: 44px;
}
.yes, .no{
  padding: 12px 18px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  color: black;
  font-size: 15px;
}

.yes{
  background-color: #00ced1;
}

.no{
  background-color: #ff3366;
}

.item.ng-enter{
  -webkit-animation:scaleUp 0.5s both ease-in;
    -moz-animation:scaleUp 0.5s both ease-in;
    animation:scaleUp 0.5s both ease-in;
}

@keyframes scaleUp {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
}
@-moz-keyframes scaleUp {
    from {
        opacity: 0.3;
        -moz-transform: scale(0.8);
    }
}
@-webkit-keyframes scaleUp {
    from {
        opacity: 0.3;
        -webkit-transform: scale(0.8);
    }
}
#startBtn{
  padding: 10px 16px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  background-color:	#42d162;
  color: black;
  font-family: 'Shrikhand', cursive;
  font-size: 18px;
}

#startBtn:hover{
  background-color: #a0e8b0;
}


#gallery {
  text-align: center;
  margin: 0 auto;
}

.smallGif {
  display: inline-block;
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin: 5px;
  border-radius: 5px;
}

.smallGif img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
