@font-face {
  font-family: "sf-pro-regular";
  src: url(./font/sf-pro-regular.OTF);
}
@font-face {
  font-family: "space-tech-italic";
  src: url(./font/space-tech-italic.ttf);
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: "sf-pro-regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Start of time_btn */
.time_btn {
  font-size: 16px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  background: var(--time_btn);
  border-radius: 48px;
  border: none;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
  display: block;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.time_btn:active {
  color: var(--white);
  text-decoration: none;
  background-color: var(--time_btn-hvr-actv);
  border: none;
  outline: none;
}
.time_btn:hover {
  color: var(--white);
  text-decoration: none;
  background-color: var(--time_btn-hvr-actv);
  border: none;
  outline: none;
}
/* End of time_btn */
