/* General */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Teko", serif;
}
html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}
/* transition */

a,
.btn {
  transition: all 300ms ease;
}
