/* 

--- 01 TYPOGRAPHY SYSTEM
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98  
- Font weights:  
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700
- Line heights:
Default: 1
Small: 1.05
Paragraph default: 1.6

--- 02 COLORS
- Primary: #e67e22
- Tints:
#fdf2e9
- Shades:
#cf711f
#a15818
#45260a
- Accents:
- Greys:
#555
#333

--- 05 SHADOWS

--- 06 BORDER-RADIUS
- Default: 9px

--- 07 WHITESPACE
- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128


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

html {
  /* Percentage of user's browser font-size setting */
  /* Default is 16px * 62.5% = 10px */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-size: 2rem;
  color: #555;
  background-color: #fdf2e9;
  overflow-x: hidden;

  position: relative;
}

main {
  background-color: #fff;
}

strong {
  font-weight: 500;
}

h2 {
  margin: 6.4rem 0 3.2rem 0;
}

a:link,
a:visited {
  color: #e67e22;
  text-decoration: none;
}

a:hover,
a:active {
  color: #cf711f;
  text-decoration: underline;
}

p,
ul,
ol {
  margin-bottom: 1.6rem;
}

li {
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
}

li::marker {
  color: #e67e22;
  font-size: 2.4rem;
}

li:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-left: 4.8rem;
}

blockquote {
  font-style: italic;
  border-left: #e67e22 solid 5px;
  background-color: #fdf2e9;
  padding: 1.6rem 0 0.8rem 1.6rem;
  margin-bottom: 1.6rem;
}

cite::before {
  content: '\007E';
  margin-right: 0.8rem;
}

cite {
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
}

figcaption {
  font-size: 1.6rem;
}

/********************************************************/
/* WordPress Classes  */
/********************************************************/
.wp-block-image {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.2rem;
}

.wp-block-image img {
  width: 80%;
  display: inline-block;
  border-radius: 9px;
  transition: 0.3s;
}
