.scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid #ffcecb;
  border-radius: 100%;
  background-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}

.scroll-button:hover svg path {
  stroke: #da291c;
}

.scroll-button svg path {
  transition: stroke 0.2s ease-in-out;
}