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

:root {
  --primary-color: #0d0d0d;
  --secondary-color: #a3c716;
}

html {
  scroll-behavior: smooth;
}

p,
a,
li {
  font-family: Mulish, Arial;
}

body {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-size: 3rem;
  font-weight: 600;
}


h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 20px 0;
}

h4 {
  font-size: 1rem;
  font-weight: 400;
}

h5 {
  font-size: 1rem;
  font-weight: 400;
}

.italic-text {
  font-style: italic;
}

ul {
  list-style-type: none;
}

p {
  color: black;
  text-align: justify;
  text-justify: inter-word;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: auto;
  padding: 0 40px;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.bg-primary {
  background-color: rgb(88, 64, 186);
  color: #fff;
}

.bg-purple-dark {
  background-color: rgb(88, 64, 186);
}

.bg-white {
  background-color: white;
}

.bg-dark {
  background-color: black;
  color: white
}

.bg-primary a,
.bg-purple-dark a,
.bg-dark a {
  color: white;
}

.bg-dark h1 {
  color: white;
  font-size: medium;
}

.bg-purple-dark nav a:hover {
  color: #a3c716;
  text-decoration: underline;
  text-decoration-color: #a3c716;
  text-decoration-thickness: 4px;
  text-decoration-style: solid;
}

.flex-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 150px;
  padding: 10px 12px;
}

.py-10 {
  padding: 10px 10px;
}

.py-20 {
  padding: 20px 20px;
}

.py-30 {
  padding: 30px 30px;
}

.py-50 {
  padding: 50px 50px;
}

.my-20 {
  margin: 20px 0;
}