@import url('https://fonts.googleapis.com/css?family=Permanent+Marker');

#tit1 {
  font-family: "Permanent Marker", cursive;
  font-size: 100%;
  font-weight: 100;
}

.destination .ribbon{
	position: absolute;
	top: 20px;
	right: 10px;
	text-align: right;
	z-index: 4;
}
.destination .ribbon i{
	display: inline-block;
	font-size: 40px;
	vertical-align: top;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.destination:hover .ribbon i{
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04);
}

.button {
  background-color: transparent; /* Green */
  border: none;
  color: black;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: transparent; 
  /*color: #c5c5c5; */
  border: 2px solid #0b9afc;
}

.button1:hover {
  background-color: #0b9afc;
  color: white;
}

@media only screen and (max-width: 700px) {
  .button{
    width: 20%;
    /*color: white;*/
  }
}

