@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

body,
html {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  scroll-behavior: smooth;
  color: #81697b;
  background-color: #f7ecdb;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.main-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  a {
    text-decoration: underline;
    color: #81697b;
  }
}

.title {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.title--primary {
  font-size: 32px;
  line-height: 36px;
}
.title--secondary {
  font-size: 24px;
  line-height: 28px;
}

@media only screen and (max-width: 1024px) {
  .title--primary {
    font-size: 22px;
    line-height: 30px;
  }
  .title--secondary {
    font-size: 18px;
    line-height: 22px;
  }
}

button {
  cursor: pointer;
}

.container {
  max-width: 1470px;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
}
