/*
--- 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
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.3px


--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/***************/
/***GENERAL***/
/***************/

html {
  font-size: 62.5%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #e67e22;
  background-color: #fdf2e9;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background-color: #fae5d3;
}

.header-div {
  display: flex;
  align-items: center;
}

.header-text {
  font-weight: 800;
}

.logo-div {
  margin-right: 1rem;
}

.logo {
  height: 7rem;
  width: 7rem;
}

.primary {
  letter-spacing: 0.3rem;
  font-size: 3.6rem;
  font-family: "Work Sans", sans-serif;
}

.secondary {
  font-size: 3rem;
}

.nav {
  margin-right: 4rem;
}

.nav-list {
  display: flex;
  gap: 5rem;
  justify-content: flex-end;
  list-style-type: none;
}

.nav-links {
  font-size: 1.9rem;
  letter-spacing: 0.2rem;
  font-weight: 800;
}

a:link,
a:visited {
  text-decoration: none;
  color: #e67e22;
}

a:hover,
a:active {
  text-decoration: none;
  color: #b8651b;
}

/****************/
/* Mobile nav */
/****************/

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #555;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.bold-text {
  font-weight: 700;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
}

.footer {
  margin-top: auto;
  background-color: #fae5d3;
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.footer-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/***************/
/*****INTRO*****/
/***************/

/***************/
/***PROJECTS***/
/***************/

.projects {
  font-weight: 600;
}

.project-align-center {
  display: flex;
  align-items: center;
}
.project-icon {
  height: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
}

.my-projects-ul {
  display: flex;
  flex-direction: column;
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  row-gap: 1rem;
}

.my-projects-li li {
  font-style: italic;
  display: flex;
  align-items: center;
}

.my-projects-li a {
  font-size: 2rem;
}

.article-text {
  font-size: 3rem;
}

/***************/
/*****About*****/
/***************/

.about-text {
  font-size: 2rem;
  margin-top: 2rem;
}

.about-text:nth-child(1) {
  margin-top: 0;
}

/***************/
/*****Contact***/
/***************/
.email {
  margin-top: 2rem;
  font-size: 2rem;
}
