body { 
background-color: #ffffff;
height: 100px;
float: left;
}

.link{
    display: inline;
    width: 100%;
    padding: 0 0;
    position: absolute;
    bottom: 0;
    margin: 0;
  }

.search {
  display: flex;
  width: 100vw;
  height: 100vh;
}




table { 
   border: 0px;
   margin: 0px;
   padding: 0px;
  }


.button {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  vertical-align: middle;
  height: 30px;
  line-height: 30px;
  background: linear-gradient(#0068b7 0%, #88b5d3 100%);
  color: #ffffff;
  transition: .4s;
}

.button:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 21px white;
  border-bottom: solid 31px transparent;
  z-index: 1;
  transition: .4s;
}

.button:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 21px transparent;
  border-bottom: solid 31px white;
  z-index: 1;
  transition: .4s;
}

.button:hover {
  color: #bbe2f1;
}

