
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200&display=swap');
 * {
  font-family: 'Prompt', sans-serif;
 }
html{
    scroll-behavior: smooth;
  }
  body{
  
    margin: 0;
    padding: 0;
  }
  section{
    width: 100%;
  }
  .goTopBtn {
    background: #5991fb;
    position: fixed;
    bottom: 16px;
    right:32px;
    width:50px;
    height:50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:32px;
    color:#f9f9f9;
    text-decoration: none;
    opacity:0;
    pointer-events: none;
    transition: all .4s;
  }
  
  .goTopBtn.active {
    bottom:32px;
    pointer-events: auto;
    opacity:1;
  }
  