.footer{
  position: fixed;
  background-color: rgb(238, 209, 167);
  padding: 7px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;  
  margin-top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  }
  .Footer-Left-section{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .Footer-title{
    font-size: 20px;
    flex: .5;
    margin: 5px;
    vertical-align: top;
  }
  .Footer-Middle-section{
    display: flex;
    flex: 1.2;
    align-items: center;
    justify-content: space-between;
  }

  .Footer-Right-section{
    display: flex;
    flex: .5;
    align-items: right;
    flex-shrink: 0;

  }
  .Footer-Buttons{
    flex: 1;
    white-space: nowrap;
  }
  .Footer-page-button{
    background-color: rgb(238, 209, 167);
    color:Black;
    font-size: 14px;
    border:none;
    border-radius:18px;
    cursor:pointer;
    padding: 12px 12px;
    margin-bottom:8px;
    transition: opacity 0.15s;
    vertical-align: top;
  }
  .Footer-page-button:hover{
    opacity: 0.7;
    text-decoration:underline;
  }
  .Footer-page-button:active{
    opacity: 0.4;
  }
  .Contact{
    background-color: #d9c3a5;
    padding: 1rem; 
    text-align: center;
  }