/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&display=swap');

/* Main Colors */
:root {
  --primary-color1: #f8f7f8;
  --primary-color2: #2f2d32;
  --primary-color3: #ebdfd2;

  --secondary-color1: #c3cacd;
  --secondary-color2: #72806e;
  --secondary-color3: #ba4747;
  --secondary-color4: #240f0a;
  --secondary-color5: #40261f;
  --secondary-color6: #784d45;

  --accent-color1: #f6de49;
  --accent-color2: #d26f4b;

  --text-color1: #2C292F;

}

body {
  font-family: 'Barlow', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif !important;
}

/* Font Weights */
h1,
h2 {
  font-weight: 400;
}

/* Set font weight to normal */
p {
  font-weight: normal;
  /* normal weight */
}

/* Font Sizes */

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.8em;
}

/* Example of using colors */
body {
  background-color: var(--primary-color1);
  color: var(--text-color1);
}

.heading {
  font-family: 'Lora', serif;
  font-weight: normal;
  font-size: 1.5em;
}

.intro-text {
  font-family: 'Barlow', sans-serif;
  font-weight: medium;
  font-size: 1em;
}

.body-text {
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  font-size: 1em;
}

#contentContainer {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 2343px;
}

#login-button {
  width: auto;
  height: 35px;
  margin: 8px 12px 8px 12px;
  border-radius: 16px;
  border-color: transparent;
  color: var(--primary-color1);
  background-color: var(--accent-color2);
  font: 14px 'Barlow', sans-serif;
  font-weight: 400 !important;
  line-height: 16.8px;
  letter-spacing: 2.80px;
  cursor: pointer;
}

#add-button,
#back-button,
#edit-button,
#view-button, 
#delete-button,
#submit-button,
#add-file-button, #restartQuizButtonInGame {
  margin-right: 5px;
  height: 35px;
  border-radius: 16px;
  border-color: transparent;
  color: var(--primary-color1);
  background-color: var(--accent-color2);
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  cursor: pointer;
}

#submit-button, #view-button {
  background-color: var(--primary-color2);
  width: auto;
}

#delete-button, #back-button{
  background-color: var(--accent-color2);
  width: 100px;
}

#edit-button, #restartQuizButtonInGame {
  background-color: var(--accent-color1);
  color: var(--text-color1);
  width: 100px;
}


#add-file-button {
  color: var(--primary-color2);
  background-color: var(--primary-color1);
  border-width: 1px !important;
  border-color: var(--primary-color2);
}

table.dataTable td {
  font: 14px 'Barlow', sans-serif;
  font-weight: 400 !important;
}

html {
  scroll-behavior: smooth;
}