@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #1d466e;
  --secondary: #ffb632;
  --tersier: #303942;
  --text: #222222;
  --white: #f2f1f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section#sec-1 {
  background-color: var(--white);
  width: 100%;
  height: max-content;
  padding: 120px 70px 20px;
}

section#sec-1 .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section#sec-1 .container .link {
  background-color: white;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  border-radius: 10px;
  padding: 20px;
  width: max-content;
  height: 100%;
}

section#sec-1 .container .link a {
  font-family: "poppins", sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: var(--text);
}

@media (max-width: 768px) {
  section#sec-1 {
    width: 100%;
    padding: 120px 30px 20px;
  }

  section#sec-1 .container {
    gap: 10px;
  }

  section#sec-1 .container .link {
    padding: 15px;
    width: 100%;
  }

  section#sec-1 .container .link a {
    line-height: 22px;
  }
}
