@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: 100vh;
  padding: 120px 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#sec-1 .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  justify-content: center;
  align-items: center;
  gap: 10px;
}

section#sec-1 .container h1 {
  color: var(--secondary);
  font-family: "poppins", sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
}

section#sec-1 .container p {
  font-family: "open sans", sans-serif;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
}

section#sec-1 .container a {
  text-decoration: none;
  color: white;
  font-family: "poppins", sans-serif;
  border-radius: 5px;
  background-color: var(--primary);
  padding: 10px 25px;
}

/* Responsive */

@media (max-width: 768px) {
  section#sec-1 {
    height: 100vh;
    padding: 120px 30px 20px;
  }

  section#sec-1 .container h1 {
    font-size: 20px;
    line-height: 20px;
  }

  section#sec-1 .container p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
}
