@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');
@import url('./layout.css');

:root {
  --primary-color: #2036de;
  --primary-color-light: #4d61fc;
  --primary-color-dark: #3b3663;

  --text-color: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #f1f1f1;
  color: #333;
}

main {
  min-height: calc(100vh - 90px);
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding-inline: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

ul {
  list-style: none;
}

.heading-primary {
  font-size: 4.6rem;
  margin-bottom: 1.6rem;
}

.heading-secondary {
  font-size: 3.2rem;
  color: var(--primary-color-dark);
}

.heading-tertiary {
  font-size: 2.4rem;
}

.subtitle {
  font-size: 1.8rem;
  color: var(--text-color);
}

.btn {
  font-size: 1.8rem;
  color: #fff;
  border: none;
  outline: none;
  padding: 2rem 5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
