:root {
  --color-background-100: #f1f3f5;
  --color-background-200: #d2dfe6;

  --color-border: #495057;

  --color-p-100: #868e96;

  --color-btn-primary: #63e6be;
  --color-btn-secondary: #0ca678;

  --color-grey-100: #d3d3d4;
  --color-grey-200: #bcbebf;
  --color-grey-300: #909294;
  --color-grey-400: #646669;
  --color-grey-500: #373b3e;
  --color-grey-600: #1e2125;
  --color-grey-700: #171a1d;
}

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

html {
  font-size: 10px;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: var(--color-background-200);
}

main {
  width: 110rem;
  margin: 4.8rem auto;
  background-color: #fff;
  box-shadow: 1px 1px 1.2rem var(--color-background);
}


/***********************/
/* Headings */
/***********************/
.primary-heading {
  color: var(--color-grey-700);
  font-size: 4.4rem;
  font-weight: 600;
}

.secondary-heading {
  color: var(--color-grey-600);
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.tertiary-heading {
  color: var(--color-grey-500);
  font-size: 2rem;
  font-weight: 500;
}


/***********************/
/* Each section layout */
/***********************/
.section-education,
.section-experience,
.section-competitions,
.section-relevant-courses,
.section-projects,
.section-skills {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}


/***********************/
/* General Styles */
/***********************/
.date,
.result {
  font-size: 1.4rem;
  color: var(--color-grey-300);
}

.list {
  list-style: square;
  margin-left: 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.list-item {
  font-size: 1.6rem;
}

.list-item-box {
  display: flex;
  align-items: center;
}

.list-item-box p {
  font-weight: 500;
  margin-right: 8px;
}

.list-item-box a:link,
.list-item-box a:visited {
  color: var(--color-grey-600);
  cursor: pointer;
}

.list-item-box a:hover,
.list-item-box a:active {
  color: var(--color-grey-400);
  text-decoration: underline;
}

.text-bold-md {
  font-weight: 500;
}

/*
-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
*/