#buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 1;
}

#buttons .button {
  width: 150px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-family: var(--generalFontFamily);
  transition: all 0.3s ease;
  border: none;
}

#buttons .button:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
  background: #a2a2a2;
  color: #000;
}