/*  
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98 

- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 /96 / 128
*/

*:focus {
  outline: none !important;
  border: 3px solid rgb(255, 30, 105);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  color: hsl(201, 11%, 66%);
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.2rem;
}

h1,
h2,
h3 {
  color: hsl(210, 10%, 33%);
  font-weight: 600;
  padding-bottom: 1.2rem;
}

h1 {
  font-size: 4.4rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
  padding-bottom: 0.8rem !important;
}

.container {
  max-width: 125rem;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid--two-columns {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  /* justify-content: start; */
}

.grid--three-columns {
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 4.4rem;
  align-items: baseline;
}

.grid--five-columns {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  column-gap: 12.6rem;
}

.grid--six-columns {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 9.6rem;
}
