/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: rgb(52, 214, 214);
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: black;
}
button {
  border: none;
  background-color: transparent;
  color: black;
}
.container {
  max-width: 1100px;
}
h1,
h2,
h3 {
  /* color: #767f7e; */
  color: rgb(44, 211, 211);
  }
p {
  color: #828b8a;
}