@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: #ffb833;
  --tersier: #303942;
  --text: #222222;
  --white: #f2f1f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

Section {
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 70px 20px;
}

Section .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 .container h1 {
  color: var(--secondary);
  font-family: "poppins", sans-serif;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}

Section .container h2 {
  color: var(--text);
  font-family: "poppins", sans-serif;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
}

Section .container h3 {
  color: #323232;
  font-family: "poppins", sans-serif;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
}

/* Responsive */

@media (max-width: 768px) {
  Section {
    padding: 120px 30px 20px;
  }

  Section .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 .container h1 {
    color: var(--secondary);
    font-family: "poppins", sans-serif;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
  }

  Section .container h2 {
    color: var(--text);
    font-family: "poppins", sans-serif;
    font-size: 25px;
    line-height: 25px;
    text-transform: uppercase;
  }

  Section .container h3 {
    color: #323232;
    font-family: "poppins", sans-serif;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
  }
}
