html{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  
}
body {
  font-family: Arial;
  background-color: #f1f6fd;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 400px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  min-height: 100vh;
}


footer,.footer,#footer {
  background-color: #333;
  color: white;
  text-align: center;
  position: fixed;
  padding: 0;
  bottom: 0;
  width: 400px;
  display: grid;
  grid-template-columns: auto auto auto auto auto !important;
  height: 60px;
  box-shadow: 0px -2px 10px #d3d2d2;
  }
  .footerbutton{
      background-color: transparent;
    color: white;
    text-align: center;
    margin: 0px;
    position: fixed;
    padding: 0;
    margin: 0;
    bottom: 80px;
    right: 10px;
  
  }
  .footerbutton a{
    border-radius: 50%;
    padding: 12px 16px;
    color: #FFF;
    border:0px solid #000;
    background: #047dca;
    box-shadow: 0px 2px 5px 2px #d3d2d2;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: font-size .5s;
  }
  .footerbutton a:hover{
    font-size: 14px;
    font-weight: bold;
  }
.fbutton {
    text-decoration: none;
    padding: 0px;
    border: 1px solid #000;
    background-color: #FFF;
    color: #034e7e;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-weight: 100;
    font-size:13px;
    transition:background-color 0.5s;
  }
  .fbutton:hover{
    background-color: #f4f8fc;
  }
  .fbuttonimg{
    width: 25px;
    margin-bottom:5px;
   transition:transform 0.5s;
  }
  .fbuttonimg:hover{
  transform:scale(1.5);
  }

  @media only screen and (max-width: 500px) {

    body {
      font-family: Arial;
      background-color: #f1f6fd;
      margin: 0;
      padding: 0;
      text-align: center;
      width: 100% !important;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    }
    footer,.footer,#footer {
      background-color: #333;
      color: white;
      text-align: center;
      margin: 0px;
      position: fixed !important;
      padding: 0;
      margin: 0;
      bottom: 0;
      width: 100%;
      display: grid;
      grid-template-columns: auto auto auto auto auto !important ;
      height: 60px;
      box-shadow: 0px -2px 10px #d3d2d2;
    }
  }