/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sirivennela&display=swap");

:root {
  --background-color: #1f2833;
  --text-primary: #fff;
  --text-secundary: #838383;
  --color-one: #66fcf1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

button,
.btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  outline: none;
  font-size: inherit;
  gap: 0.5rem;
  font-size: 0.9rem;
}

button p,
.btn p {
  font-family: inherit;
  color: inherit;
}

.btn-main {
  background-color: var(--color-one);
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-main:hover {
  filter: brightness(0.9);
}
