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

*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --primary-color: #297c6b;
  --secondary-color: #5bc8af;
  --bg-color: #194d44;
  --txt-color: #333;
  --fade-color: #eaeaea;
  --transition-all: all 0.2s ease-in;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background: #f5f5f5;
}

a {
  text-decoration: none;
}

ul,
li {
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}
input,
select,
button {
  border: 0;
  outline: none;
  font-family: "Montserrat", sans-serif;
}
button {
  background: transparent;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--txt-color);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
}
