i have 5 button i wanna use them to scroll to section
for the first i make button, i customize button with css , and after when i try to make a scroll , i got problem, dosent work
i try to use a link , the problem is setting button on css dont work very good , the text is on TOP left
i try to use now on css scroll slow with JS ? or HTML with #link
thanks
HTML ( many version of boutton i make for u ONLY FORT TESTING )
<section id="jour">
      <div class="container20">
        <a  href="#Dimanche" class="btn1">Dimanche</a>
        <button onclick="window.location.href='#Lundi'"class="btn1">Lundi</br><b>13</b></button>
        <button onclick="window.location.href='#Mardi'"class="btn1">Mardi</br><b>12</b></button>
        <button onclick="scrollTo.location.href='#Mercredi'"class="btn1">Mercredi</br><b>13</b></button>
        <button onclick="scrollTo.location.href='#Jeudi'"class="btn1">Jeudi</br><b>14</b></button>
        <button class="btn1">Dimanche</br><b>12</b></button>
      </div>
    </section>
CSS :
 .container20 {
  display: flex;
  justify-content: center;
 }
.btn1 {
  display: block;
  height: 80px;
  width: 80px;
  color : #262552;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  padding: 1px 1px;
  border-radius: 3px;
  transition: 0.3s;
  margin: 30px 1px ;
  background: #9FEDD7;
  border: 3px solid #f7ee6f;
}
#jour .btn1:hover {
  background-color:#f7ee6f;
  border: 2px solid #f7ee6f;
  color : #262552 ;
}
 
    