  
@import url('https://fonts.googleapis.com/css2?family=Galdeano&display=swap');

html {
  scroll-behavior: smooth;
}

body{
    font-family: 'Galdeano';
}
footer{
    color: white; 
    font-size: large;
    font-family: 'Galdeano';
}
footer a{
    color: wheat;
}
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }

  #feedback {
    display: block;
    position: fixed;
    top: 35%;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 4px;
  }
  #survey {
    display: block;
    position: fixed;
    top: 55%;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
  }
  
  #topBtn:hover, #feedback:hover {
    background-color: greenyellow;
  }
