button{
    transition: transform 1.4s;
    scale: 1;
}
button:hover{
    transform: scale(1.1);
}

::-webkit-scrollbar{
    background-color: red;
    border-radius: 10px;
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: blue;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: darkblue;
  }

::-webkit-scrollbar-thumb:active {
    background-color: black;
}